File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/webapp/app/components/navigation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ import { SideMenuSection } from "./SideMenuSection";
8181type SideMenuUser = Pick < User , "email" | "admin" > & { isImpersonating : boolean } ;
8282export type SideMenuProject = Pick <
8383 MatchedProject ,
84- "id" | "name" | "slug" | "version" | "environments"
84+ "id" | "name" | "slug" | "version" | "environments" | "engine"
8585> ;
8686export type SideMenuEnvironment = MatchedEnvironment ;
8787
@@ -153,7 +153,7 @@ export function SideMenu({
153153 project = { project }
154154 environment = { environment }
155155 />
156- { environment . type === "DEVELOPMENT" && (
156+ { environment . type === "DEVELOPMENT" && project . engine === "V2" && (
157157 < DevConnection >
158158 { ( { isConnected } ) => (
159159 < TooltipProvider disableHoverableContent = { true } >
You can’t perform that action at this time.
0 commit comments