diff --git a/ui/desktop/src/App.tsx b/ui/desktop/src/App.tsx index f543901bac6..9980462d433 100644 --- a/ui/desktop/src/App.tsx +++ b/ui/desktop/src/App.tsx @@ -96,7 +96,7 @@ export default function App() { const handleKeyDown = (event: KeyboardEvent) => { if ((event.metaKey || event.ctrlKey) && event.key === 'n') { event.preventDefault(); - window.electron.createChatWindow(); + window.electron.createChatWindow(undefined, window.appConfig.get('GOOSE_WORKING_DIR')); } };