text export as default

This commit is contained in:
DirkSchlossmacher 2023-11-14 16:41:41 +01:00
parent 741f727628
commit 2c8e112c87

View File

@ -146,7 +146,7 @@ export function MessageExporter() {
type ExportFormat = (typeof formats)[number]; type ExportFormat = (typeof formats)[number];
const [exportConfig, setExportConfig] = useState({ const [exportConfig, setExportConfig] = useState({
format: "image" as ExportFormat, format: "text" as ExportFormat,
includeContext: true, includeContext: true,
}); });