From 5c6c970a6ab296fd63707e8384524b1a1ea30836 Mon Sep 17 00:00:00 2001 From: nquidox Date: Sun, 14 Sep 2025 11:40:08 +0300 Subject: [PATCH] small fix --- src/stores/authStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/authStore.js b/src/stores/authStore.js index c121832..264431a 100644 --- a/src/stores/authStore.js +++ b/src/stores/authStore.js @@ -65,7 +65,7 @@ export const useAuthStore = defineStore('auth', () => { const userInfo = async () => { try { - return await apiClient.get('/user') + return await apiClient.get('/user/') } catch (error) { console.error('Register error:', error) }