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 365336cbf..6e6f745c7 100644
--- a/src/stores/UserStore.js
+++ b/src/stores/UserStore.js
@@ -177,7 +177,7 @@ export default class UserStore extends Store {
177 if ((!this.team.plan || this.team.state === 'expired')) return false; 177 if ((!this.team.plan || this.team.state === 'expired')) return false;
178 const plan = getPlan(this.team.plan); 178 const plan = getPlan(this.team.plan);
179 179
180 return plan === PLANS.PRO; 180 return plan === PLANS.PRO || plan === PLANS.LEGACY;
181 } 181 }
182 182
183 @computed get legacyServices() { 183 @computed get legacyServices() {