Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/(user-page)/mypage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default async function MyPage() {
await prefetchProfileData(queryClient);

return (
<div className="flex flex-col px-[24px] pb-[100px] pt-[80px]">
<div className="flex flex-col px-[24px] pb-[100px]">
<HydrationBoundary state={dehydrate(queryClient)}>
<div className="md:mb-8">
<ProfileImage />
Expand Down
2 changes: 2 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Footer from '@/components/common/Footer';
import Header from '@/components/common/Header';
import { ToastProvider } from '@/components/common/ToastContext';
import ReactQueryProviders from '@/hooks/useReactQuery';
Expand Down Expand Up @@ -31,7 +32,7 @@
return res.data.data;
} catch (error) {
if (error instanceof AxiosError) {
console.log('error: ', error.status);

Check warning on line 35 in src/app/layout.tsx

View workflow job for this annotation

GitHub Actions / check

Unexpected console statement
}
return null;
}
Expand All @@ -51,6 +52,7 @@
<ToastProvider>
<Header userInfo={userInfo} />
<div className="m-auto max-w-[1340px] pt-20">{children}</div>
<Footer />
</ToastProvider>
</ReactQueryProviders>
<div id="modal-root" />
Expand Down
Loading
Loading