Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pages/SignUp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export default function SignUp() {
onChange(data.map(({ id }) => id));
}}
errorMsg={errors.courseIdList?.message}
selectBoxClassName="!h-[50px] !text-base overflow-hidden !border-darkGray"
selectBoxClassName="!h-[50px] !text-base overflow-hidden"
onSelectBoxClick={triggerCourseIdListError}
hasFullCheck={!!options.length}
optionClassName="text-start tracking-tight leading-5"
Expand All @@ -284,7 +284,7 @@ export default function SignUp() {
onChange(data.map(({ id }) => id));
}}
errorMsg={errors.courseIdList?.message}
selectBoxClassName="!h-[50px] !text-base overflow-hidden !border-darkGray"
selectBoxClassName="!h-[50px] !text-base overflow-hidden"
onSelectBoxClick={triggerCourseIdListError}
optionClassName="text-start tracking-tight whitespace-pre-wrap leading-5"
/>
Expand Down Expand Up @@ -320,7 +320,7 @@ export default function SignUp() {
});
}}
isMarkTechStackList
selectBoxClassName="!h-[50px] !text-base !border-darkGray"
selectBoxClassName="!h-[50px] !text-base"
errorMsg={err?.message}
/>
);
Expand Down
1 change: 0 additions & 1 deletion src/services/auth/authMutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export const useUpdateUserProfile = (
});
};

// 나의 프로필 이미지 업데이트하기
export const useUpdateProfileImage = (
options?: UseMutationOptions<
unknown,
Expand Down
2 changes: 1 addition & 1 deletion src/services/axiosInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ axiosInstance.interceptors.response.use(
if (originalRequest.url !== '/api/login/check') {
return handleNewAccessToken();
}
break;
return redirectToLogin();

default:
// redirectToLogin();
Expand Down
Loading