aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/stores/UserStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/UserStore.js b/src/stores/UserStore.js
index d1e6d6570..26ac2c60e 100644
--- a/src/stores/UserStore.js
+++ b/src/stores/UserStore.js
@@ -123,7 +123,7 @@ export default class UserStore extends Store {
123 123
124 @computed get data() { 124 @computed get data() {
125 if (!this.isLoggedIn) return {}; 125 if (!this.isLoggedIn) return {};
126 126
127 return this.getUserInfoRequest.execute().result || {}; 127 return this.getUserInfoRequest.execute().result || {};
128 } 128 }
129 129