feat: reintroduce `.excalidraw.png` default when embedding scene (#8979)

pull/8985/head
David Luzar 4 weeks ago committed by GitHub
parent 12c39d1034
commit f2f8219917
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -170,9 +170,7 @@ export const exportCanvas = async (
return fileSave(blob, {
description: "Export to PNG",
name,
// FIXME reintroduce `excalidraw.png` when most people upgrade away
// from 111.0.5563.64 (arm64), see #6349
extension: /* appState.exportEmbedScene ? "excalidraw.png" : */ "png",
extension: appState.exportEmbedScene ? "excalidraw.png" : "png",
mimeTypes: [IMAGE_MIME_TYPES.png],
fileHandle,
});

Loading…
Cancel
Save