@@ -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"],
}