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;