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";
81
81
type SideMenuUser = Pick < User , "email" | "admin" > & { isImpersonating : boolean } ;
82
82
export type SideMenuProject = Pick <
83
83
MatchedProject ,
84
- "id" | "name" | "slug" | "version" | "environments"
84
+ "id" | "name" | "slug" | "version" | "environments" | "engine"
85
85
> ;
86
86
export type SideMenuEnvironment = MatchedEnvironment ;
87
87
@@ -153,7 +153,7 @@ export function SideMenu({
153
153
project = { project }
154
154
environment = { environment }
155
155
/>
156
- { environment . type === "DEVELOPMENT" && (
156
+ { environment . type === "DEVELOPMENT" && project . engine === "V2" && (
157
157
< DevConnection >
158
158
{ ( { isConnected } ) => (
159
159
< TooltipProvider disableHoverableContent = { true } >
You can’t perform that action at this time.
0 commit comments