aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/settings/EditSettingsScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/settings/EditSettingsScreen.js')
-rw-r--r--src/containers/settings/EditSettingsScreen.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js
index 94c53fc90..49ef03664 100644
--- a/src/containers/settings/EditSettingsScreen.js
+++ b/src/containers/settings/EditSettingsScreen.js
@@ -587,7 +587,6 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
587 } = this.props.stores; 587 } = this.props.stores;
588 const { 588 const {
589 updateStatus, 589 updateStatus,
590 cacheSize,
591 updateStatusTypes, 590 updateStatusTypes,
592 isClearingAllCache, 591 isClearingAllCache,
593 lockingFeatureEnabled, 592 lockingFeatureEnabled,
@@ -610,7 +609,7 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
610 noUpdateAvailable={updateStatus === updateStatusTypes.NOT_AVAILABLE} 609 noUpdateAvailable={updateStatus === updateStatusTypes.NOT_AVAILABLE}
611 updateIsReadyToInstall={updateStatus === updateStatusTypes.DOWNLOADED} 610 updateIsReadyToInstall={updateStatus === updateStatusTypes.DOWNLOADED}
612 onSubmit={d => this.onSubmit(d)} 611 onSubmit={d => this.onSubmit(d)}
613 cacheSize={cacheSize} 612 getCacheSize={() => app.cacheSize}
614 isClearingAllCache={isClearingAllCache} 613 isClearingAllCache={isClearingAllCache}
615 onClearAllCache={clearAllCache} 614 onClearAllCache={clearAllCache}
616 isSpellcheckerIncludedInCurrentPlan={spellcheckerConfig.isIncludedInCurrentPlan} 615 isSpellcheckerIncludedInCurrentPlan={spellcheckerConfig.isIncludedInCurrentPlan}