From 44a7cfc62d1a1352a9825d172428b12dca44cab0 Mon Sep 17 00:00:00 2001 From: vantezzen Date: Sat, 7 Sep 2019 16:12:13 +0200 Subject: Remove service limit and enable workspaces --- src/features/serviceLimit/store.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/features/serviceLimit') diff --git a/src/features/serviceLimit/store.js b/src/features/serviceLimit/store.js index 9836c5f51..9c4b5ef1a 100644 --- a/src/features/serviceLimit/store.js +++ b/src/features/serviceLimit/store.js @@ -12,7 +12,7 @@ export class ServiceLimitStore extends FeatureStore { this.stores = stores; this.actions = actions; - this.isServiceLimitEnabled = true; + this.isServiceLimitEnabled = false; } stop() { @@ -22,9 +22,10 @@ export class ServiceLimitStore extends FeatureStore { } @computed get userHasReachedServiceLimit() { - if (!this.isServiceLimitEnabled) return false; + return false; + // if (!this.isServiceLimitEnabled) return false; - return this.serviceLimit !== 0 && this.serviceCount >= this.serviceLimit; + // return this.serviceLimit !== 0 && this.serviceCount >= this.serviceLimit; } @computed get serviceLimit() { -- cgit v1.2.3-70-g09d2