diff --git a/app/components/exporter.tsx b/app/components/exporter.tsx index f79e8490..a9a1071d 100644 --- a/app/components/exporter.tsx +++ b/app/components/exporter.tsx @@ -152,71 +152,64 @@ export function MessageExporter() { index={currentStepIndex} onStepChange={setCurrentStepIndex} /> - -
- {currentStep.value === "select" && ( - <> - - - - - - { - updateExportConfig( - (config) => - (config.includeContext = e.currentTarget.checked), - ); - }} - > - - - - - )} - - {currentStep.value === "preview" && ( - <> - {exportConfig.format === "text" ? ( - - ) : ( - - )} - - )} +
+ + + + + + { + updateExportConfig( + (config) => (config.includeContext = e.currentTarget.checked), + ); + }} + > + + +
+ {currentStep.value === "preview" && ( +
+ {exportConfig.format === "text" ? ( + + ) : ( + + )} +
+ )} ); }