Skip to content

Commit 63e33e8

Browse files
committed
Debugging6
1 parent d822ed2 commit 63e33e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/source/library/game/GamePage.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@
197197
value &&
198198
value.status === "complete" &&
199199
!$nextQuestion &&
200-
$gameRoundStatus &&
201-
$gameRoundStatus !== "completed"
200+
$gameRound &&
201+
$gameRound.status !== "completed"
202202
) {
203203
console.debug("currentQuestion subscribe updating gameRound", value);
204204
gameRound.update((value) => {
@@ -207,7 +207,7 @@
207207
}
208208
return {
209209
...value,
210-
status: $gameRoundStatus,
210+
status: "completed",
211211
};
212212
});
213213
}

0 commit comments

Comments
 (0)