id what this is

This commit is contained in:
2025-01-11 10:24:56 +01:00
parent 201381342c
commit 8223ca5166
12 changed files with 232 additions and 9 deletions
+2 -1
View File
@@ -13,8 +13,9 @@ async function createGame() {
loading.value = true;
await lobbyStore
.createGame()
.then(() => {
.then((data) => {
loading.value = false;
navigateTo("/game/" + data.id);
})
.catch((e) => {
if (e.data.statusCode == 400) {