diff --git a/apps/expo/src/hooks/DownloadManagerContext.tsx b/apps/expo/src/hooks/DownloadManagerContext.tsx index 473a064..d298172 100644 --- a/apps/expo/src/hooks/DownloadManagerContext.tsx +++ b/apps/expo/src/hooks/DownloadManagerContext.tsx @@ -206,7 +206,7 @@ export const DownloadManagerProvider: React.FC<{ children: ReactNode }> = ({ if (timeElapsed === 0) return; const newBytes = downloadProgress.bytesDownloaded - lastBytesWritten; - const speed = newBytes / timeElapsed / 1024; + const speed = newBytes / timeElapsed / 1024 / 1024; const progress = downloadProgress.bytesDownloaded / downloadProgress.bytesTotal;