We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7664529 + 1e5ade4 commit 46ac8ceCopy full SHA for 46ac8ce
1 file changed
โsrc/pages/MyEditPage/index.tsxโ
@@ -8,6 +8,7 @@ import { useState } from 'react';
8
import type { UserInterface } from '@/libs/types/user';
9
import CustomAlert from '@/common/components/CustomAlert';
10
import { getFileKey } from '@/common/utils/getFileKeys';
11
+import SafeArea from '@/common/components/SafeArea';
12
13
type MyEditState = { data: UserInterface };
14
@@ -62,7 +63,7 @@ const MyEditPage = () => {
62
63
};
64
65
return (
- <>
66
+ <SafeArea>
67
<div className={s.EntireLayout}>
68
<CustomHeader title="ํ๋กํ ์์ ํ๊ธฐ" onClick={onShowAlert} />
69
<MyEditContent
@@ -88,7 +89,7 @@ const MyEditPage = () => {
88
89
yesBtn="๋ค, ๊ทธ๋ง๋๋์"
90
/>
91
)}
- </>
92
+ </SafeArea>
93
);
94
95
0 commit comments