From 45950da71426bbd11f0ebf94d4b3e888df0e7794 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 24 Feb 2023 23:38:59 +0800 Subject: [PATCH] Don't POST if no choices set in poll --- src/components/status.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/status.jsx b/src/components/status.jsx index 5c21528a..9976af4c 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -951,6 +951,7 @@ function Poll({ choices.push(value); } }); + if (!choices.length) return; setUIState('loading'); await votePoll(choices); setUIState('default');