Skip to content

Commit cb5ade5

Browse files
committed
fix/app/bottomNav
1 parent dcfd885 commit cb5ade5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/pages/_app.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import '@/shared/icons';
33
import { useState } from 'react';
44
import type { AppProps } from 'next/app';
55
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
6-
import { BottomNav } from '@/shared/components/tab/BottomNav';
76

87
export default function App({ Component, pageProps }: AppProps) {
98
const [queryClient] = useState(

src/shared/components/tab/BottomNav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Link from 'next/link';
22
import { useRouter } from 'next/router';
3-
import { TabItem } from './TabItem';
3+
import { TabItem } from '@/shared/components/tab/TabItem';
44
import type { IconName } from '@/shared/icons/iconNames';
55

66
interface NavItem {

0 commit comments

Comments
 (0)