Skip to content

Commit f35fc1e

Browse files
committed
Fix: 사소한 UI 수정
1 parent c60e366 commit f35fc1e

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/pages/Account/AccountCancel/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AccountCancel: React.FC = () => {
3737
useEffect(() => {
3838
setTimeout(() => {
3939
setIsLoading(false);
40-
}, 5000);
40+
}, 1000);
4141
}, []);
4242

4343
const handleCheckboxChange = () => {

src/pages/Profile/ProfileEdit/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,11 @@ const ProfileEdit: React.FC = () => {
160160
<ProfileEditContainer>
161161
<TopBar text="회원정보 수정" LeftButtonSrc={back} onClickLeftButton={() => navigate(-1)} />
162162
<ProfilePicWrapper>
163-
<Skeleton width={120} height={120} borderRadius={80} />
163+
<ProfilePic>
164+
<Skeleton width={120} height={120} borderRadius={80} />
165+
</ProfilePic>
164166
</ProfilePicWrapper>
167+
165168
<UserInfo>
166169
<Skeleton width={100} height={30} />
167170
</UserInfo>

0 commit comments

Comments
 (0)