From 3ee4fb7914476ad2d2b0c5577d0d98db59c6b0e7 Mon Sep 17 00:00:00 2001 From: TopherMayor Date: Thu, 30 Apr 2026 11:23:49 -0700 Subject: [PATCH] fix: keep option cards in stable order --- public/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index f5ba17d..14c10e7 100644 --- a/public/index.html +++ b/public/index.html @@ -2062,8 +2062,7 @@ return; } - // Sort by votes desc - const sorted = [...opts].sort((a, b) => getVoteEntries(b).length - getVoteEntries(a).length); + const sorted = [...opts]; const maxVotes = sorted[0] ? getVoteEntries(sorted[0]).length : 1; const budgetBoard = activeTab === 'budget' ? renderBudgetBoard() : '';