Skip to content

Commit

Permalink
#79 hotfix bug with state replacing for progress.
Browse files Browse the repository at this point in the history
  • Loading branch information
artzub committed Feb 3, 2022
1 parent 0d0765d commit 13cbe05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redux/modules/progress.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default createSlice({
} else if (show === false) {
stopFetching(newState);
}
state.show = state.isFetching;
newState.show = newState.isFetching;

return newState;
},
Expand Down

0 comments on commit 13cbe05

Please sign in to comment.