chore: merge develop → main (maintenance window 2026-06-28) #7

Merged
hiveiq merged 12 commits from develop into main 2026-06-28 07:25:43 -04:00
Showing only changes of commit 2c957fb072 - Show all commits
+1 -1
View File
@@ -38,7 +38,7 @@
onMount(() => {
document.documentElement.classList.add('dark-mode');
authApi.get('/api/auth/users/me').then((res: any) => {
authApi.get('/auth/api/users/me').then((res: any) => {
userInfo = { name: res.data.name, email: res.data.email, role: res.data.role };
}).catch(() => {});
});