diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index c4ac25db7..c55c73d67 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -76,7 +76,7 @@ const Settings = props => { setTimeout(() => { if(config && !!config.feedback && !!config.feedback.url) { window.open(config.feedback.url, "_blank"); - } else window.open('{{__SUPPORT_URL__}}', "_blank"); + } else window.open(__SUPPORT_URL__, "_blank"); }, 400); } diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index dc83664a6..d0fe47f00 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -120,7 +120,7 @@ const SettingsList = inject("storeAppOptions", "storeToolbarSettings")(observer( closeModal(); if(config && !!config.feedback && !!config.feedback.url) { window.open(config.feedback.url, "_blank"); - } else window.open('{{__SUPPORT_URL__}}', "_blank"); + } else window.open(__SUPPORT_URL__, "_blank"); }; const appOptions = props.storeAppOptions; diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index 69780dd76..138789288 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -130,7 +130,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => { closeModal(); if(config && !!config.feedback && !!config.feedback.url) { window.open(config.feedback.url, "_blank"); - } else window.open('{{__SUPPORT_URL__}}', "_blank"); + } else window.open(__SUPPORT_URL__, "_blank"); }; const appOptions = props.storeAppOptions;