diff --git a/src/hub/sagas.ts b/src/hub/sagas.ts index 0df865b0..e3e0343d 100644 --- a/src/hub/sagas.ts +++ b/src/hub/sagas.ts @@ -242,7 +242,7 @@ function* handleDownloadAndRun(action: ReturnType): Gener } for (let i = 0; i < didCompile.file.size; i += chunkSize) { - yield* put(didProgressDownload((i * chunkSize) / didCompile.file.size)); + yield* put(didProgressDownload(i / didCompile.file.size)); const writeUserRamMessageId = nextMessageId();