aboutsummaryrefslogtreecommitdiffstats
path: root/src/models
diff options
context:
space:
mode:
Diffstat (limited to 'src/models')
-rw-r--r--src/models/User.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/User.ts b/src/models/User.ts
index 8c8f3e490..14481fbb6 100644
--- a/src/models/User.ts
+++ b/src/models/User.ts
@@ -8,7 +8,7 @@ interface IUser {
8 organization: string | null; 8 organization: string | null;
9 accountType: string | null; 9 accountType: string | null;
10 beta: boolean; 10 beta: boolean;
11 locale: boolean; 11 locale: string;
12 isSubscriptionOwner: boolean; 12 isSubscriptionOwner: boolean;
13 team: object; 13 team: object;
14} 14}
@@ -37,7 +37,7 @@ export default class User {
37 37
38 @observable beta = false; 38 @observable beta = false;
39 39
40 @observable locale = false; 40 @observable locale: string | null = null;
41 41
42 @observable team = {}; 42 @observable team = {};
43 43