Skip to content

Commit

Permalink
fix :: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Feb 8, 2024
1 parent 2472d24 commit 06357f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/user/src/apis/axios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ instance.interceptors.response.use(
},
(err) => {
const {
config,
//config,
response: { status },
} = err;
if (status === 403) {
const token = Cookie.get('refreshToken');
//const token = Cookie.get('refreshToken');
} else {
toast.error('오류가 발생헀습니다');
return Promise.reject(err);
Expand Down

0 comments on commit 06357f6

Please sign in to comment.