fixing the pdf downloader in offline mode (#2743)

This commit is contained in:
Nyndow
2026-02-24 12:14:06 +03:00
committed by GitHub
parent 4d50cd9b71
commit ea63ae6e72
+1 -1
View File
@@ -30,7 +30,7 @@ export function downloadWithAnchor(blob: Blob, filename: string) {
a.click();
document.body.removeChild(a);
setTimeout(() => URL.revokeObjectURL(url), 500);
setTimeout(() => URL.revokeObjectURL(url), 5000);
}
export async function downloadFromUrl(url: string, filename: string) {