This commit is contained in:
Edd
2025-12-23 20:03:59 +00:00
parent 289e8df604
commit 0320230279
5 changed files with 129 additions and 18 deletions
+3 -2
View File
@@ -42,12 +42,13 @@ 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()
})