Polls: allow multiple votes by default

Co-authored-by: yash-signal <yash@signal.org>
This commit is contained in:
automated-signal
2026-02-26 15:53:03 -06:00
committed by GitHub
parent d536565377
commit fa887f7b1a

View File

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