From 7c710ba59899fcc3c868fcdad07df1e2821d73fd Mon Sep 17 00:00:00 2001 From: James Grugett Date: Fri, 16 Sep 2022 17:20:23 -0500 Subject: [PATCH] Rename file nav-bar to bottom-nav-bar --- web/components/nav/{nav-bar.tsx => bottom-nav-bar.tsx} | 0 web/components/nav/group-nav-bar.tsx | 2 +- web/components/page.tsx | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename web/components/nav/{nav-bar.tsx => bottom-nav-bar.tsx} (100%) diff --git a/web/components/nav/nav-bar.tsx b/web/components/nav/bottom-nav-bar.tsx similarity index 100% rename from web/components/nav/nav-bar.tsx rename to web/components/nav/bottom-nav-bar.tsx diff --git a/web/components/nav/group-nav-bar.tsx b/web/components/nav/group-nav-bar.tsx index a3b2063d..986f35a1 100644 --- a/web/components/nav/group-nav-bar.tsx +++ b/web/components/nav/group-nav-bar.tsx @@ -7,7 +7,7 @@ import TrophyIcon from 'web/lib/icons/trophy-icon' import { useUser } from 'web/hooks/use-user' import NotificationsIcon from '../notifications-icon' import router from 'next/router' -import { userProfileItem } from './nav-bar' +import { userProfileItem } from './bottom-nav-bar' const mobileGroupNavigation = [ { name: 'Markets', key: 'markets', icon: HomeIcon }, diff --git a/web/components/page.tsx b/web/components/page.tsx index 826206f4..9b26e9f8 100644 --- a/web/components/page.tsx +++ b/web/components/page.tsx @@ -1,6 +1,6 @@ import clsx from 'clsx' import { ReactNode } from 'react' -import { BottomNavBar } from './nav/nav-bar' +import { BottomNavBar } from './nav/bottom-nav-bar' import Sidebar from './nav/sidebar' import { Toaster } from 'react-hot-toast'