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

This commit is contained in:
David Luzar 2025-01-05 22:21:39 +01:00 committed by GitHub
parent 12c39d1034
commit f2f8219917
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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,
});