Catch export errors

This commit is contained in:
Paulo Gustavo Veiga 2022-01-31 14:25:55 -08:00
parent 7c9effaa5d
commit bea6a15282

View File

@ -70,7 +70,7 @@ const ExportDialog = ({
setSubmit(true); setSubmit(true);
}; };
const exporter = (formatType: ExportFormat) => { const exporter = (formatType: ExportFormat): Promise<string> => {
let svgElement: Element | null = null; let svgElement: Element | null = null;
let size; let size;
let mindmap: Mindmap; let mindmap: Mindmap;
@ -129,7 +129,10 @@ const ExportDialog = ({
// Clean up ... // Clean up ...
URL.revokeObjectURL(url); URL.revokeObjectURL(url);
document.body.removeChild(anchor); document.body.removeChild(anchor);
}).catch((fail) => {
console.log("Unexpected error during export:" + fail);
}); });
onClose(); onClose();
} }
}, [submit]); }, [submit]);