aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.js b/src/config.js
index 544f94fde..3c8b0f0d0 100644
--- a/src/config.js
+++ b/src/config.js
@@ -45,16 +45,16 @@ export const DEFAULT_APP_SETTINGS = {
45}; 45};
46 46
47export const DEFAULT_FEATURES_CONFIG = { 47export const DEFAULT_FEATURES_CONFIG = {
48 isSpellcheckerPremiumFeature: false, 48 isSpellcheckerIncludedInCurrentPlan: true,
49 needToWaitToProceed: false, 49 needToWaitToProceed: false,
50 needToWaitToProceedConfig: { 50 needToWaitToProceedConfig: {
51 delayOffset: ms('1h'), 51 delayOffset: ms('1h'),
52 wait: ms('10s'), 52 wait: ms('10s'),
53 }, 53 },
54 isServiceProxyEnabled: false, 54 isServiceProxyEnabled: false,
55 isServiceProxyPremiumFeature: true, 55 isServiceProxyIncludedInCurrentPlan: false,
56 isAnnouncementsEnabled: true, 56 isAnnouncementsEnabled: true,
57 isWorkspacePremiumFeature: true, 57 isWorkspaceIncludedInCurrentPlan: true,
58 isWorkspaceEnabled: false, 58 isWorkspaceEnabled: false,
59}; 59};
60 60