diff --git a/src/data/index.ts b/src/data/index.ts index d50a1730..47e81c29 100644 --- a/src/data/index.ts +++ b/src/data/index.ts @@ -314,6 +314,7 @@ export const exportCanvas = async ( if (type === "svg") { await fileSave(new Blob([tempSvg.outerHTML], { type: "image/svg+xml" }), { fileName: `${name}.svg`, + extensions: ["svg"], }); return; } else if (type === "clipboard-svg") { @@ -338,6 +339,7 @@ export const exportCanvas = async ( if (blob) { await fileSave(blob, { fileName: fileName, + extensions: ["png"], }); } });