From 3e791910cc4dc9f413b8faab750d08f14574c4ba Mon Sep 17 00:00:00 2001 From: bach Date: Wed, 19 Oct 2022 11:32:22 +0200 Subject: [PATCH] fixed init user check fi loggedin --- src/stores/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/user.js b/src/stores/user.js index 6052baf..0ab829e 100644 --- a/src/stores/user.js +++ b/src/stores/user.js @@ -29,7 +29,7 @@ export const UserStore = defineStore({ this.uid = data.attributes.drupal_internal__uid this.mail = data.attributes.mail this.name = data.attributes.name - this.isloggedin = data.attributes.status + this.isloggedin = true //data.attributes.status console.log('user store checkuser isloggedin', this.isloggedin); }) }