diff --git a/src/App.tsx b/src/App.tsx index 9d4a364..f32eb51 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -439,6 +439,8 @@ export default function App() { const [selectedHistoryId, setSelectedHistoryId] = useState(null); const [confirmState, setConfirmState] = useState(null); const [settingsOpen, setSettingsOpen] = useState(false); + const [customPromptOpen, setCustomPromptOpen] = useState(false); + const [customPromptText, setCustomPromptText] = useState(""); const [dbExporting, setDbExporting] = useState(false); const [dbExportStatus, setDbExportStatus] = useState(null); const [markdownPreview, setMarkdownPreview] = useState(false);