We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056172f commit e192c99Copy full SHA for e192c99
‎client/src/components/Nav/ExportConversation/ExportModal.tsx
@@ -72,7 +72,7 @@ export default function ExportModal({
72
73
const { exportConversation } = useExportConversation({
74
conversation,
75
- filename,
+ filename: filenamify(filename),
76
type,
77
includeOptions,
78
exportBranches,
@@ -95,7 +95,7 @@ export default function ExportModal({
95
<Input
96
id="filename"
97
value={filename}
98
- onChange={(e) => setFileName(filenamify(e.target.value || ''))}
+ onChange={(e) => setFileName(e.target.value || '')}
99
placeholder={localize('com_nav_export_filename_placeholder')}
100
/>
101
</div>
0 commit comments