From 3f196db1e52b0d7508f26aeaf6c91d2b08d1f902 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Sat, 13 Apr 2024 12:54:17 -0400 Subject: [PATCH] Hide bridge nav link --- src/components/nav/NavBar.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/nav/NavBar.tsx b/src/components/nav/NavBar.tsx index 45a3418..c4a21f4 100644 --- a/src/components/nav/NavBar.tsx +++ b/src/components/nav/NavBar.tsx @@ -5,7 +5,7 @@ import { usePathname } from 'next/navigation'; import { ChevronIcon } from 'src/components/icons/Chevron'; import { CeloGlyph } from 'src/components/logos/Celo'; import { DropdownMenu } from 'src/components/menus/Dropdown'; -import Bridge from 'src/images/icons/bridge.svg'; +// import Bridge from 'src/images/icons/bridge.svg'; import Dashboard from 'src/images/icons/dashboard.svg'; import Delegate from 'src/images/icons/delegate.svg'; import Governance from 'src/images/icons/governance.svg'; @@ -16,7 +16,7 @@ const LINKS = (isWalletConnected?: boolean) => [ { label: 'Staking', to: '/', icon: Staking }, { label: 'Governance', to: '/governance', icon: Governance }, { label: 'Delegate', to: '/delegate', icon: Delegate }, - { label: 'Bridge', to: '/bridge', icon: Bridge }, + // { label: 'Bridge', to: '/bridge', icon: Bridge }, ...(isWalletConnected ? [{ label: 'Dashboard', to: '/account', icon: Dashboard }] : []), ];