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:
David Lechner
2023-04-25 12:02:30 -05:00
committed by David Lechner
parent afdf53dc9e
commit be7112c123
+1 -1
View File
@@ -284,7 +284,7 @@ function* handleDownloadAndRun(action: ReturnType<typeof downloadAndRun>): Gener
}
}
didProgressDownload(1);
yield* put(didProgressDownload(1));
const writeUserMetaMessageId2 = nextMessageId();