Skip reveal phase and freeze titles after suggestions

This commit is contained in:
2026-02-04 22:06:43 +01:00
parent 0f6a0fb35a
commit 90bcde6f36
8 changed files with 13 additions and 44 deletions

View File

@@ -26,7 +26,7 @@ export async function loadSuggestData() {
}
export async function loadRevealData() {
if (state.phase === "Reveal" || state.phase === "Vote" || state.phase === "Results") {
if (state.phase === "Vote" || state.phase === "Results") {
const latest = await api.allSuggestions();
const latestSig = signatureSuggestions(latest);
const changed = latestSig !== state.allSuggestionsSig;