File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414} from '../ui/select.tsx' ;
1515import { IexecAccount } from './IexecAccount.tsx' ;
1616
17- export function TopNavBar ( ) {
17+ export function Navbar ( ) {
1818 const { isConnected, address } = useUserStore ( ) ;
1919 const { logout, login } = useLoginLogout ( ) ;
2020 const [ isMenuOpen , setMenuOpen ] = useState ( false ) ;
Original file line number Diff line number Diff line change 11import { createRootRoute , Outlet } from '@tanstack/react-router' ;
22import { TanStackRouterDevtools } from '@tanstack/react-router-devtools' ;
3- import { TopNavBar } from '@/components/navbar/NavBar' ;
3+ import { Navbar } from '@/components/navbar/NavBar' ;
44import { useWatchAccount } from '@/hooks/useWatchAccount' ;
55
66export const Route = createRootRoute ( {
@@ -12,7 +12,7 @@ function Root() {
1212
1313 return (
1414 < div className = "mx-auto mb-20 w-full px-6 md:px-10 lg:px-20" >
15- < TopNavBar />
15+ < Navbar />
1616 < Outlet />
1717 < TanStackRouterDevtools />
1818 </ div >
You can’t perform that action at this time.
0 commit comments