diff --git a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx index dfdb1931af..404a828221 100644 --- a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx @@ -68,7 +68,7 @@ const SettingsPage = inject("storeAppOptions", "storeReview", "storeDocumentInfo if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; _canFeedback = appOptions.customization.feedback !== false; - _canDisplayInfo = appOptions.customization.info !== false; + _canDisplayInfo = appOptions.customization.mobile?.info !== false; } } diff --git a/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx b/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx index ce04763c8a..a5d473faf5 100644 --- a/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx @@ -56,7 +56,7 @@ const SettingsPage = inject('storeAppOptions', 'storeToolbarSettings', 'storePre if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; _canFeedback = appOptions.customization.feedback !== false; - _canDisplayInfo = appOptions.customization.info !== false; + _canDisplayInfo = appOptions.customization.mobile?.info !== false; } } diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx index 8984f2a08f..4ed782295b 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx @@ -56,7 +56,7 @@ const SettingsPage = inject('storeAppOptions', 'storeSpreadsheetInfo')(observer( if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; _canFeedback = appOptions.customization.feedback !== false; - _canDisplayInfo = appOptions.customization.info !== false; + _canDisplayInfo = appOptions.customization.mobile?.info !== false; } }