From 2f0d6dcefe01063139c4ec0c0421ad6325f1ebef Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Thu, 15 Sep 2022 21:47:38 -0700 Subject: [PATCH] Remove unsupported XSL as supported format. --- .../maps-page/action-dispatcher/export-dialog/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webapp/src/components/maps-page/action-dispatcher/export-dialog/index.tsx b/packages/webapp/src/components/maps-page/action-dispatcher/export-dialog/index.tsx index b150149d..cced7006 100644 --- a/packages/webapp/src/components/maps-page/action-dispatcher/export-dialog/index.tsx +++ b/packages/webapp/src/components/maps-page/action-dispatcher/export-dialog/index.tsx @@ -22,7 +22,7 @@ import { getMindmapFromPersistence } from '../../../editor-page/PersistenceManag import Checkbox from '@mui/material/Checkbox'; -type ExportFormat = 'svg' | 'jpg' | 'png' | 'txt' | 'mm' | 'wxml' | 'xls' | 'md'; +type ExportFormat = 'svg' | 'jpg' | 'png' | 'txt' | 'mm' | 'wxml' | 'md'; type ExportGroup = 'image' | 'document' | 'mindmap-tool'; type ExportDialogProps = {