diff --git a/src/components/FeedbackFab.tsx b/src/components/FeedbackFab.tsx index 1f5d23a..ab3207c 100644 --- a/src/components/FeedbackFab.tsx +++ b/src/components/FeedbackFab.tsx @@ -181,7 +181,11 @@ export default function FeedbackFab({ module: moduleProp }: Props = {}) { }; const next = () => { - if (step === 1 && !type) return; + if (step === 1) { + if (!type) return; + setStep(2); + return; + } if (step === 2) { if (!content.trim()) { taRef.current?.focus(); return; } submit();