From 96ac655d92ffb995d7601b2a11c4d68ed6c89442 Mon Sep 17 00:00:00 2001 From: aits2026 Date: Tue, 10 Mar 2026 13:55:26 +0800 Subject: [PATCH] fix: preserve text export format selection --- src/pages/ExportPage.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/ExportPage.tsx b/src/pages/ExportPage.tsx index 38d01a5..4287c27 100644 --- a/src/pages/ExportPage.tsx +++ b/src/pages/ExportPage.tsx @@ -3887,11 +3887,9 @@ function ExportPage() { if (scope === 'content' && contentType) { if (contentType === 'text') { - const fastTextFormat: TextExportFormat = options.format === 'excel' ? 'arkme-json' : options.format const textExportConcurrency = Math.min(2, Math.max(1, base.exportConcurrency ?? options.exportConcurrency)) return { ...base, - format: fastTextFormat, contentType, exportConcurrency: textExportConcurrency, exportAvatars: base.exportAvatars,