We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93070ee commit e59cd56Copy full SHA for e59cd56
src/pages/MyPage/index.tsx
@@ -4,14 +4,15 @@ import Profile from '@/features/my/components/Profile';
4
import MyTrade from '@/features/my/components/MyTrade';
5
import { useGetUser } from '@/features/my/apis/useGetUser';
6
import NotFoundPage from '../NotFoundPage';
7
+import SafeArea from '@/common/components/SafeArea';
8
9
const MyPage = () => {
10
const { data, isLoading, isError } = useGetUser();
11
12
if (isLoading) return null;
13
14
return (
- <>
15
+ <SafeArea>
16
<MainTopBar />
17
{isError ? (
18
<NotFoundPage />
@@ -23,7 +24,7 @@ const MyPage = () => {
23
24
</div>
25
)
26
)}
- </>
27
+ </SafeArea>
28
);
29
};
30
0 commit comments