diff --git a/ui/App.tsx b/ui/App.tsx index fd1d59ba155..eeebcde6911 100644 --- a/ui/App.tsx +++ b/ui/App.tsx @@ -88,7 +88,9 @@ const App = () => { const { isFlagEnabled } = useFeatureFlags(); - const isNewRuntimeEnabled = isFlagEnabled("WEAVE_GITOPS_FEATURE_GITOPS_RUNTIME"); + const isNewRuntimeEnabled = isFlagEnabled( + "WEAVE_GITOPS_FEATURE_GITOPS_RUNTIME" + ); const navItems: NavItem[] = [ { @@ -162,7 +164,11 @@ const App = () => { path={V2Routes.ImagePolicyDetails} component={withSearchParams(ImagePolicyDetails)} /> - {isNewRuntimeEnabled ? : } + {isNewRuntimeEnabled ? ( + + ) : ( + + )}