From fcf1bd37eac261d197c5293bb7876f4addb55646 Mon Sep 17 00:00:00 2001 From: HongbiKo Date: Mon, 3 Feb 2025 17:37:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20auth=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EC=8A=A4=ED=83=80=EC=9D=BC=20=EB=A0=88=EC=9D=B4=EC=95=84?= =?UTF-8?q?=EC=9B=83=20=EC=A0=95=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login/Login.styled.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/login/Login.styled.ts b/src/pages/login/Login.styled.ts index 652f2aae..3f2b3c2f 100644 --- a/src/pages/login/Login.styled.ts +++ b/src/pages/login/Login.styled.ts @@ -4,6 +4,7 @@ export const Container = styled.div` display: flex; width: 100%; max-width: ${({ theme }) => theme.layout.width.desktop}; + min-width: 310px; margin: 0 auto; flex-direction: column; align-items: center; @@ -32,6 +33,7 @@ export const Container = styled.div` export const InputContainer = styled.div` display: flex; + min-width: 310px; gap: 0.6rem; button { @@ -44,7 +46,7 @@ export const InputContainer = styled.div` export const InputWrapper = styled.div` max-width: 310px; - width: 70%; + width: inherit; margin-bottom: 1.875rem; position: relative; `; From 32504289a7d7d532a4801a28f0094010e45789dd Mon Sep 17 00:00:00 2001 From: HongbiKo Date: Mon, 3 Feb 2025 17:38:10 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=ED=98=84=EC=9E=AC=20=EC=93=B0?= =?UTF-8?q?=EB=8A=94=20=EB=8B=89=EB=84=A4=EC=9E=84=20=EA=B2=80=EC=82=AC?= =?UTF-8?q?=EC=8B=9C=20validation=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/mypage/myProfile/myProfile.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/mypage/myProfile/myProfile.tsx b/src/components/mypage/myProfile/myProfile.tsx index a482847a..832b3918 100644 --- a/src/components/mypage/myProfile/myProfile.tsx +++ b/src/components/mypage/myProfile/myProfile.tsx @@ -131,9 +131,7 @@ const MyProfile = () => { const { fields, append, remove } = useFieldArray({ control, name: 'career' }); const handleCheckNickName = (nickname: string) => { - if (nickname !== myData?.nickname) { - handleNickname(nickname); - } + handleNickname(nickname); }; const onSubmit = (data: ProfileFormData, e?: React.BaseSyntheticEvent) => {