Add admin vote status list and ready/wait messaging

This commit is contained in:
2026-02-04 23:31:12 +01:00
parent 76dfc4ea46
commit 3179144bc7
8 changed files with 53 additions and 0 deletions

View File

@@ -69,6 +69,9 @@ export async function refreshPhaseData() {
state.votesRendered = false;
await loadVoteData();
}
if (state.me?.isAdmin) {
state.adminVoteStatus = await adminApi.voteStatus();
}
} catch (err) {
if (handleAuthError(err, clearUserState)) return;
throw err;