Add vote finalize UX and missing-vote warning placement

This commit is contained in:
2026-02-04 23:02:09 +01:00
parent 0571877f3a
commit 58159119cf
5 changed files with 31 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ export async function loadState() {
state.prevPhase = state.phase;
state.phase = stateData.currentPhase;
state.resultsOpen = stateData.resultsOpen;
state.votesFinal = stateData.votesFinal ?? me?.votesFinal ?? false;
state.counts = stateData;
if (state.prevPhase !== state.phase && state.phase === "Vote") {
state.votesRendered = false;