We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ec5d4 commit 4035043Copy full SHA for 4035043
1 file changed
src/features/spellchecker/index.js
@@ -16,7 +16,7 @@ export default function init(stores) {
16
17
config.isIncludedInCurrentPlan = isSpellcheckerIncludedInCurrentPlan !== undefined ? isSpellcheckerIncludedInCurrentPlan : DEFAULT_FEATURES_CONFIG.isSpellcheckerIncludedInCurrentPlan;
18
19
- if (!stores.user.data.isPremium && config.isIncludedInCurrentPlan && stores.settings.app.enableSpellchecking) {
+ if (!stores.user.data.isPremium && !config.isIncludedInCurrentPlan && stores.settings.app.enableSpellchecking) {
20
debug('Override settings.spellcheckerEnabled flag to false');
21
22
Object.assign(stores.settings.app, {
0 commit comments