From 3e381b75cb4ae7246ee37258ef28ec9b3b3a022d Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Sun, 26 Jan 2020 04:04:33 -0800 Subject: [PATCH] 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. --- src/scene/data.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scene/data.ts b/src/scene/data.ts index 65406efb..02c34695 100644 --- a/src/scene/data.ts +++ b/src/scene/data.ts @@ -227,7 +227,6 @@ export async function exportCanvas( if (blob) { await fileSave(blob, { fileName: fileName, - description: "Excalidraw image", }); } });