Skip to content

Commit 1e5ade4

Browse files
committed
fix: my-edit에 safe-area 적용
1 parent f5293a8 commit 1e5ade4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/pages/MyEditPage/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { useState } from 'react';
88
import type { UserInterface } from '@/libs/types/user';
99
import CustomAlert from '@/common/components/CustomAlert';
1010
import { getFileKey } from '@/common/utils/getFileKeys';
11+
import SafeArea from '@/common/components/SafeArea';
1112

1213
type MyEditState = { data: UserInterface };
1314

@@ -62,7 +63,7 @@ const MyEditPage = () => {
6263
};
6364

6465
return (
65-
<>
66+
<SafeArea>
6667
<div className={s.EntireLayout}>
6768
<CustomHeader title="프로필 수정하기" onClick={onShowAlert} />
6869
<MyEditContent
@@ -88,7 +89,7 @@ const MyEditPage = () => {
8889
yesBtn="네, 그만둘래요"
8990
/>
9091
)}
91-
</>
92+
</SafeArea>
9293
);
9394
};
9495

0 commit comments

Comments
 (0)