From 210131ca184c3aa043371857c022aa1aa149efbf Mon Sep 17 00:00:00 2001 From: Aditya Mangalampalli Date: Fri, 15 Apr 2022 02:00:25 -0700 Subject: Matched casing for almost all replacements --- src/components/settings/navigation/SettingsNavigation.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/components/settings/navigation/SettingsNavigation.js') diff --git a/src/components/settings/navigation/SettingsNavigation.js b/src/components/settings/navigation/SettingsNavigation.js index 763f4e8a7..ad1cef1e4 100644 --- a/src/components/settings/navigation/SettingsNavigation.js +++ b/src/components/settings/navigation/SettingsNavigation.js @@ -4,7 +4,7 @@ import { defineMessages, injectIntl } from 'react-intl'; import { inject, observer } from 'mobx-react'; import { RouterStore } from 'mobx-react-router'; -import { LOCAL_SERVER, LIVE_FERDI_API, LIVE_FRANZ_API } from '../../../config'; +import { LOCAL_SERVER, LIVE_FERDIUM_API, LIVE_FRANZ_API } from '../../../config'; import Link from '../../ui/Link'; import UIStore from '../../../stores/UIStore'; import SettingsStore from '../../../stores/SettingsStore'; @@ -32,9 +32,9 @@ const messages = defineMessages({ id: 'settings.navigation.team', defaultMessage: 'Manage Team', }, - supportFerdi: { - id: 'settings.navigation.supportFerdi', - defaultMessage: 'About Ferdi', + supportFerdium: { + id: 'settings.navigation.supportFerdium', + defaultMessage: 'About Ferdium', }, logout: { id: 'settings.navigation.logout', @@ -65,11 +65,11 @@ class SettingsNavigation extends Component { localStorage.removeItem('authToken'); if (isUsingWithoutAccount) { - // Reset server back to Ferdi API + // Reset server back to Ferdium API this.props.actions.settings.update({ type: 'app', data: { - server: LIVE_FERDI_API, + server: LIVE_FERDIUM_API, }, }); } @@ -77,7 +77,7 @@ class SettingsNavigation extends Component { this.props.stores.router.push('/auth/welcome'); - // Reload Ferdi, otherwise many settings won't sync correctly with the server + // Reload Ferdium, otherwise many settings won't sync correctly with the server // after logging into another account window.location.reload(); } @@ -148,7 +148,7 @@ class SettingsNavigation extends Component { className="settings-navigation__link" activeClassName="is-active" > - {intl.formatMessage(messages.supportFerdi)} + {intl.formatMessage(messages.supportFerdium)}