feat: add user feedback form with DB persistence and email notifications #81

Merged
chihlasm merged 16 commits from feat/feedback-form into main 2026-02-19 00:04:20 +00:00
Showing only changes of commit 6ec00b6723 - Show all commits

View File

@@ -78,9 +78,8 @@ export function FeedbackPage() {
triggerRef.current?.focus() triggerRef.current?.focus()
break break
case 'Tab': case 'Tab':
if (typeDropdownOpen) { if (typeDropdownOpen && highlightedIndex >= 0) {
setTypeDropdownOpen(false) handleSelectType(FEEDBACK_TYPES[highlightedIndex].value)
setHighlightedIndex(-1)
} }
break break
} }