Merge branch 'develop' into feature/frontend-gameboard-singleplayer

This commit is contained in:
2025-12-23 20:12:01 +00:00
5 changed files with 129 additions and 20 deletions
+3 -2
View File
@@ -38,11 +38,12 @@ const logout = () => {
success: () => {
return 'Logout Sucessfull '
},
error: (data) => `[API] Error saving game - ${data?.response?.data?.message}`,
error: (data) => `[API] Error - ${data?.response?.data?.message}`,
})
}
onMounted(() => {
onMounted(async () => {
await authStore.restoreSession()
socketStore.handleConnection()
})
</script>