We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60e366 commit f35fc1eCopy full SHA for f35fc1e
2 files changed
src/pages/Account/AccountCancel/index.tsx
@@ -37,7 +37,7 @@ const AccountCancel: React.FC = () => {
37
useEffect(() => {
38
setTimeout(() => {
39
setIsLoading(false);
40
- }, 5000);
+ }, 1000);
41
}, []);
42
43
const handleCheckboxChange = () => {
src/pages/Profile/ProfileEdit/index.tsx
@@ -160,8 +160,11 @@ const ProfileEdit: React.FC = () => {
160
<ProfileEditContainer>
161
<TopBar text="회원정보 수정" LeftButtonSrc={back} onClickLeftButton={() => navigate(-1)} />
162
<ProfilePicWrapper>
163
- <Skeleton width={120} height={120} borderRadius={80} />
+ <ProfilePic>
164
+ <Skeleton width={120} height={120} borderRadius={80} />
165
+ </ProfilePic>
166
</ProfilePicWrapper>
167
+
168
<UserInfo>
169
<Skeleton width={100} height={30} />
170
</UserInfo>
0 commit comments