From 2c8e112c8765148d2e967fa47741606adc60c7bb Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Tue, 14 Nov 2023 16:41:41 +0100 Subject: [PATCH] text export as default --- app/components/exporter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/exporter.tsx b/app/components/exporter.tsx index 4ca6427a7..5b624fc85 100644 --- a/app/components/exporter.tsx +++ b/app/components/exporter.tsx @@ -146,7 +146,7 @@ export function MessageExporter() { type ExportFormat = (typeof formats)[number]; const [exportConfig, setExportConfig] = useState({ - format: "image" as ExportFormat, + format: "text" as ExportFormat, includeContext: true, });