Skip to content

Commit 9ca419c

Browse files
authored
Merge pull request #196 from D3vPals/feat/#194
QA보완
2 parents 9bb0e69 + 3250428 commit 9ca419c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/mypage/myProfile/myProfile.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ const MyProfile = () => {
131131
const { fields, append, remove } = useFieldArray({ control, name: 'career' });
132132

133133
const handleCheckNickName = (nickname: string) => {
134-
if (nickname !== myData?.nickname) {
135-
handleNickname(nickname);
136-
}
134+
handleNickname(nickname);
137135
};
138136

139137
const onSubmit = (data: ProfileFormData, e?: React.BaseSyntheticEvent) => {

src/pages/login/Login.styled.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export const Container = styled.div`
44
display: flex;
55
width: 100%;
66
max-width: ${({ theme }) => theme.layout.width.desktop};
7+
min-width: 310px;
78
margin: 0 auto;
89
flex-direction: column;
910
align-items: center;
@@ -32,6 +33,7 @@ export const Container = styled.div`
3233

3334
export const InputContainer = styled.div`
3435
display: flex;
36+
min-width: 310px;
3537
gap: 0.6rem;
3638
3739
button {
@@ -44,7 +46,7 @@ export const InputContainer = styled.div`
4446

4547
export const InputWrapper = styled.div`
4648
max-width: 310px;
47-
width: 70%;
49+
width: inherit;
4850
margin-bottom: 1.875rem;
4951
position: relative;
5052
`;

0 commit comments

Comments
 (0)