wip : working on game

This commit is contained in:
2024-12-30 00:02:09 +01:00
parent d92739bbd6
commit 9a0c26dd80
5 changed files with 63 additions and 3 deletions
-1
View File
@@ -10,7 +10,6 @@ const currentGames = computed(() => {
const games = Object.values(lobbyStore.games).filter((g) =>
g.players.some((p) => p.user.id == userStore.self?.id)
);
console.log(games);
return games;
});
</script>