Skip to content

Commit

Permalink
Merge branch 'hotfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Apr 4, 2024
2 parents ba65c17 + b3589a5 commit 336d55b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apis/file/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const useCreatePresignedURL = () => {
});
},
onError: (error: AxiosError) => {
switch (error.response.status) {
case 400 : {
switch (error.response?.status) {
case 400 : {
append({
title: '',
message: '잘못된 파일 확장자입니다.',
Expand Down

0 comments on commit 336d55b

Please sign in to comment.