Skip to content

Commit c0e8123

Browse files
committed
fix/app
1 parent 28c0bc4 commit c0e8123

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/pages/_app.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ export default function App({ Component, pageProps }: AppProps) {
1919

2020
return (
2121
<QueryClientProvider client={queryClient}>
22-
<div className="relative min-h-screen pb-[10rem]">
23-
<Component {...pageProps} />
24-
<BottomNav />
25-
</div>
22+
<Component {...pageProps} />
23+
<BottomNav />
2624
</QueryClientProvider>
2725
);
2826
}

0 commit comments

Comments
 (0)