aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/spellchecker
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-04-08 14:15:45 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-04-08 14:15:45 +0200
commitf918dbd344532d5083dc6568966bdf04e9d25440 (patch)
tree471576d574cef5d283b1470943a20c03be2b89be /src/features/spellchecker
parentUpdate Component.json (diff)
downloadferdium-app-f918dbd344532d5083dc6568966bdf04e9d25440.tar.gz
ferdium-app-f918dbd344532d5083dc6568966bdf04e9d25440.tar.zst
ferdium-app-f918dbd344532d5083dc6568966bdf04e9d25440.zip
remove console log
Diffstat (limited to 'src/features/spellchecker')
-rw-r--r--src/features/spellchecker/index.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/features/spellchecker/index.js b/src/features/spellchecker/index.js
index 94883ad17..79a2172b4 100644
--- a/src/features/spellchecker/index.js
+++ b/src/features/spellchecker/index.js
@@ -14,8 +14,6 @@ export default function init(stores) {
14 autorun(() => { 14 autorun(() => {
15 const { isSpellcheckerPremiumFeature } = stores.features.features; 15 const { isSpellcheckerPremiumFeature } = stores.features.features;
16 16
17 console.log('isSpellcheckerPremiumFeature', isSpellcheckerPremiumFeature);
18
19 config.isPremium = isSpellcheckerPremiumFeature !== undefined ? isSpellcheckerPremiumFeature : DEFAULT_FEATURES_CONFIG.isSpellcheckerPremiumFeature; 17 config.isPremium = isSpellcheckerPremiumFeature !== undefined ? isSpellcheckerPremiumFeature : DEFAULT_FEATURES_CONFIG.isSpellcheckerPremiumFeature;
20 18
21 if (!stores.user.data.isPremium && config.isPremium && stores.settings.app.enableSpellchecking) { 19 if (!stores.user.data.isPremium && config.isPremium && stores.settings.app.enableSpellchecking) {