Polls: allow multiple votes by default

This commit is contained in:
yash-signal
2026-02-26 15:38:28 -06:00
committed by GitHub
parent b03222b8a5
commit 6db6aba90c

View File

@@ -47,7 +47,7 @@ export function PollCreateModal({
{ id: generateUuid(), value: '' }, { id: generateUuid(), value: '' },
{ id: generateUuid(), value: '' }, { id: generateUuid(), value: '' },
]); ]);
const [allowMultiple, setAllowMultiple] = useState(false); const [allowMultiple, setAllowMultiple] = useState(true);
const [emojiPickerOpenForOption, setEmojiPickerOpenForOption] = useState< const [emojiPickerOpenForOption, setEmojiPickerOpenForOption] = useState<
string | null string | null
>(null); >(null);