diff --git a/front/src/App.vue b/front/src/App.vue index 34f88abe9..4bc357c44 100644 --- a/front/src/App.vue +++ b/front/src/App.vue @@ -69,9 +69,9 @@ const { width } = useWindowSize() const showSetInstanceModal = ref(false) // Fetch user data on startup -if (store.state.auth.authenticated) { - store.dispatch('auth/fetchUser') -} +// NOTE: We're not checking if we're authenticated in the store, +// because we want to learn if we are authenticated at all +store.dispatch('auth/fetchUser')