diff --git a/static/app/views/organizationLayout/index.tsx b/static/app/views/organizationLayout/index.tsx index 95782af98ba526..00592211d4b743 100644 --- a/static/app/views/organizationLayout/index.tsx +++ b/static/app/views/organizationLayout/index.tsx @@ -37,8 +37,7 @@ function OrganizationLayout({children}: Props) { // oganization is loaded before rendering children. Organization may not be // loaded yet when this first renders. const organization = useOrganization({allowNull: true}); - // const hasNavigationV2 = organization?.features.includes('navigation-sidebar-v2'); - const hasNavigationV2 = true; + const hasNavigationV2 = organization?.features.includes('navigation-sidebar-v2'); const App = hasNavigationV2 ? AppLayout : LegacyAppLayout; return (