more e2e export fixes (#1150)

* more e2e export fixes

* fixes

* fmt

* A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu)

* trigger CI

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Kurt Hutten
2023-11-30 17:20:52 +11:00
committed by GitHub
parent cef29013b8
commit f3083eb59d
4 changed files with 2490 additions and 6 deletions

View File

@ -34,7 +34,7 @@ export async function exportSave(data: ArrayBuffer) {
// Create a new blob.
const blob = new Blob([new Uint8Array(file.contents)])
// Save the file.
browserSaveFile(blob, file.name)
await browserSaveFile(blob, file.name)
}
}
} catch (e) {