mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
fix: chrome crashing when embedding scene on chrome arm (#6383)
This commit is contained in:
parent
5c8941467d
commit
ac4c8b3ca7
1 changed files with 3 additions and 1 deletions
|
@ -89,7 +89,9 @@ export const exportCanvas = async (
|
||||||
return await fileSave(blob, {
|
return await fileSave(blob, {
|
||||||
description: "Export to PNG",
|
description: "Export to PNG",
|
||||||
name,
|
name,
|
||||||
extension: appState.exportEmbedScene ? "excalidraw.png" : "png",
|
// FIXME reintroduce `excalidraw.png` when most people upgrade away
|
||||||
|
// from 111.0.5563.64 (arm64), see #6349
|
||||||
|
extension: /* appState.exportEmbedScene ? "excalidraw.png" : */ "png",
|
||||||
fileHandle,
|
fileHandle,
|
||||||
});
|
});
|
||||||
} else if (type === "clipboard") {
|
} else if (type === "clipboard") {
|
||||||
|
|
Loading…
Add table
Reference in a new issue