#29 fix: fetch user data on route change after login

This commit is contained in:
mono
2026-03-14 22:36:57 -05:00
parent 373ebb0ae4
commit 974c84fdb2

View File

@@ -115,6 +115,9 @@
}, },
$route() { $route() {
this.checkAuth(); this.checkAuth();
if (this.isAuthenticated && !this.user) {
this.fetchUser();
}
}, },
}, },
methods: { methods: {