fix(about): Loading text on offline mode

This commit is contained in:
alexsparkes
2024-03-22 22:01:35 +00:00
parent d931aa13b7
commit ccd6dc2d28
10 changed files with 10 additions and 10 deletions

View File

@@ -110,7 +110,7 @@ class About extends PureComponent {
componentDidMount() {
if (navigator.onLine === false || localStorage.getItem('offlineMode') === 'true') {
this.setState({
update: variables.getMessage('modals.main.settings.sections.about.version.checking_update'),
update: variables.getMessage('modals.main.marketplace.offline.description'),
loading: variables.getMessage('modals.main.marketplace.offline.description'),
});
return;