Skip to content

Commit

Permalink
delete :: console 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Nov 24, 2023
1 parent d30423c commit 113f9e2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/apis/applications/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ export default function ApplyToCompany(recruitmentId: string) {
navigator.push("/mypage");
},
onError: (error: AxiosError) => {
console.log(error);

switch (error.response?.status) {
case 401:
append({
Expand Down
1 change: 0 additions & 1 deletion src/app/recruitments/apply/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ export default function Apply() {
if (fileList.length) {
openModal();
} else {
console.log("파일존재X");
append({
title: "",
message: "파일이 존재하지 않습니다.",
Expand Down
2 changes: 0 additions & 2 deletions src/components/recruitments/apply/FileUploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ export default function FileUploader({
if (fileRef.current?.files?.length) {
const files = Array.from(fileRef.current?.files);
setFileList((prev) => [...prev, ...files]);
} else {
console.log("파일 추가에 실패하였습니다.");
}
};

Expand Down

0 comments on commit 113f9e2

Please sign in to comment.