attempt to fix stun not appearinng
release-tag / release-image (push) Successful in 33s

This commit is contained in:
2024-12-21 19:59:46 +01:00
parent 68ffb4ba08
commit d030c8e88a
+1 -1
View File
@@ -43,7 +43,7 @@ const currentTeam = computed(() =>
const isPlayerTurn = computed(() =>
currentTeam.value?.players.some(
(p) => p.user.userId == authStore.selfUser.userId
(p) => p._id == selfPlayer.value?._id
)
);