Skip to content

Commit 1edbbfc

Browse files
author
Victoria Ivanova
committed
remove console.log
1 parent 0c83b0f commit 1edbbfc

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

frontend/src/store/report.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,9 @@ export const $isNewReport = createStore(true)
9494
export const $reportRequestState = createStore(RequestStates.IDLE);
9595
$reportRequestState
9696
.on(fetchReportFx.pending, (_, state) => {
97-
console.log("pending", state);
9897
return state ? RequestStates.PENDING : RequestStates.DONE;
9998
})
10099
.on(fetchReportFx.doneData, () => {
101-
console.log("done data");
102100
return RequestStates.DONE;
103101
});
104102

0 commit comments

Comments
 (0)