From 6db6aba90cf8f266b36bba56a07b24a869dfd1c9 Mon Sep 17 00:00:00 2001 From: yash-signal Date: Thu, 26 Feb 2026 15:38:28 -0600 Subject: [PATCH] Polls: allow multiple votes by default --- ts/components/PollCreateModal.dom.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/PollCreateModal.dom.tsx b/ts/components/PollCreateModal.dom.tsx index 4ef1be04a6..f52c5bf90a 100644 --- a/ts/components/PollCreateModal.dom.tsx +++ b/ts/components/PollCreateModal.dom.tsx @@ -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);