mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-15 02:54:07 +00:00
hub/sagas: fix not dispatching 100% progress
We were calling the action creator without actually dispatching the action. Fixes: https://github.com/pybricks/support/issues/1044
This commit is contained in:
committed by
David Lechner
parent
afdf53dc9e
commit
be7112c123
+1
-1
@@ -284,7 +284,7 @@ function* handleDownloadAndRun(action: ReturnType<typeof downloadAndRun>): Gener
|
||||
}
|
||||
}
|
||||
|
||||
didProgressDownload(1);
|
||||
yield* put(didProgressDownload(1));
|
||||
|
||||
const writeUserMetaMessageId2 = nextMessageId();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user