From e08a18b2d506ffa9565bddad31356fa46fca3070 Mon Sep 17 00:00:00 2001 From: robin Date: Fri, 19 Dec 2025 13:20:38 +0100 Subject: [PATCH] fix: add missing state for suggested custom tags in TastingNoteForm --- src/components/TastingNoteForm.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/TastingNoteForm.tsx b/src/components/TastingNoteForm.tsx index 1abb351..b0cf30e 100644 --- a/src/components/TastingNoteForm.tsx +++ b/src/components/TastingNoteForm.tsx @@ -34,6 +34,7 @@ export default function TastingNoteForm({ bottleId, sessionId }: TastingNoteForm const [palateTagIds, setPalateTagIds] = useState([]); const [finishTagIds, setFinishTagIds] = useState([]); const [suggestedTags, setSuggestedTags] = useState([]); + const [suggestedCustomTags, setSuggestedCustomTags] = useState([]); const { activeSession } = useSession(); const effectiveSessionId = sessionId || activeSession?.id;