Skip to content

Commit 46ac8ce

Browse files
committed
Merge branch 'dev'
2 parents 7664529 + 1e5ade4 commit 46ac8ce

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)