Skip to content

Commit

Permalink
fix(nav): revert hardcoded flag
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re committed Sep 20, 2024
1 parent 6ff4019 commit 070fd8b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions static/app/views/organizationLayout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 070fd8b

Please sign in to comment.