diff --git a/src/components/Layout/Navbar.tsx b/src/components/Layout/Navbar.tsx index 2975c7ff4..41585b76f 100644 --- a/src/components/Layout/Navbar.tsx +++ b/src/components/Layout/Navbar.tsx @@ -2,12 +2,8 @@ import React from 'react' import { useLocation } from '@reach/router' import UserInformation, { UserInformationProps } from 'decentraland-gatsby/dist/components/User/UserInformation' -import UserMenu from 'decentraland-gatsby/dist/components/User/UserMenu' -import useFeatureFlagContext from 'decentraland-gatsby/dist/context/FeatureFlag/useFeatureFlagContext' import { Mobile, NotMobile } from 'decentraland-ui/dist/components/Media/Media' -import { FeatureFlags } from '../../utils/features' - import BurgerMenu from './BurgerMenu/BurgerMenu' const BURGER_MENU_LOCATIONS = ['/', '/proposals/', '/transparency/', '/projects/', '/profile/'] @@ -16,7 +12,6 @@ function Navbar(props: UserInformationProps) { const location = useLocation() const showBurgerMenu = BURGER_MENU_LOCATIONS.some((burgerLocation) => burgerLocation === location.pathname) - const [ff] = useFeatureFlagContext() return ( <> {showBurgerMenu && ( diff --git a/src/utils/features.ts b/src/utils/features.ts index 142446ad0..dd1034a3c 100644 --- a/src/utils/features.ts +++ b/src/utils/features.ts @@ -3,5 +3,4 @@ export enum FeatureFlags { // Polygon = 'dao-enabled-polygon', Ens = 'dao-enabled-ens', Delegation = 'dao-enabled-delegation', - NewNavbarDropdown = 'dapps-new-navbar-dropdown', }