Expected behaviour
When focus is inside the main input textarea on the dashboard, pressing Cmd+Enter (Mac) or Ctrl+Enter (Windows/Linux) should trigger generation — same as clicking the Generate button.
Implementation
Find the textarea component in the dashboard and attach a keydown handler:
if ((e.metaKey || e.ctrlKey) && e.key === 'Enter') {
e.preventDefault();
handleGenerate();
}
Acceptance criteria
This is roughly a 10-line change. Good first issue.
Expected behaviour
When focus is inside the main input textarea on the dashboard, pressing
Cmd+Enter(Mac) orCtrl+Enter(Windows/Linux) should trigger generation — same as clicking the Generate button.Implementation
Find the textarea component in the dashboard and attach a
keydownhandler:Acceptance criteria
Cmd+Entertriggers generation from the textareaEnter(new line) behaviourmetaKey) and Windows/Linux (ctrlKey)This is roughly a 10-line change. Good first issue.