Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit f00ac08

Browse files
committed
try fix error "UnhandledRejection Error: Reducers may not dispatch actions."
1 parent e48a32c commit f00ac08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/reducers/bundles.reducer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ function formatStatus(bundle) {
643643
function formatProgress(bundle) {
644644
const progress = bundle.progress ? bundle.progress : 0;
645645
if (typeof progress === 'number' && progress > 100) {
646-
log.error(`progress > 100%`);
646+
log.debug(`progress > 100%`);
647647
logBundleState(bundle);
648648
}
649649
return `(${progress}%)`;

0 commit comments

Comments
 (0)