npm update & npm run format

This commit is contained in:
2024-09-10 12:58:30 +02:00
parent c03c71a1b5
commit 5edf197533
17 changed files with 329 additions and 337 deletions

View File

@ -47,9 +47,9 @@ onMounted(async () => {
* Fetch assets from the server
*/
const token = useCookies().get('token');
if(token) {
gameStore.setToken(token);
const token = useCookies().get('token')
if (token) {
gameStore.setToken(token)
gameStore.initConnection()
}