Remove image type description when saving to png (#566)

The description is the name of the file type in the dialog. This shouldn't be Excalidraw but the default one for a png.
This commit is contained in:
Christopher Chedeau 2020-01-26 04:04:33 -08:00 committed by David Luzar
parent e1ed40be65
commit 3e381b75cb

View File

@ -227,7 +227,6 @@ export async function exportCanvas(
if (blob) {
await fileSave(blob, {
fileName: fileName,
description: "Excalidraw image",
});
}
});