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() : '';