Skip to content

Commit

Permalink
fix(eslint): remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
lailabjil committed Mar 21, 2024
1 parent 7053370 commit 9440c05
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/service/api-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ const requestPutStateReviewer = (
})
.catch(err => {
if (err.response?.statut == 404) {
console.log(err);
return {
state: StateDataStateEnum.INIT,
date: Date.now(),
Expand Down Expand Up @@ -377,7 +376,6 @@ const requestGetStateReviewer = (
} else if (err.response?.status != 404) {
setError(ErrorCodeEnum.UNREACHABLE_SURVEYS_DATAS);
} else if (err.response?.statut == 404) {
console.log(err);
return {
state: StateDataStateEnum.INIT,
date: Date.now(),
Expand Down

0 comments on commit 9440c05

Please sign in to comment.