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 Jan 8, 2021
1 parent 586b90a commit 3175cd5
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 3175cd5

Please sign in to comment.