aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/AppUpdateInfoBar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/AppUpdateInfoBar.tsx')
-rw-r--r--src/components/AppUpdateInfoBar.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/AppUpdateInfoBar.tsx b/src/components/AppUpdateInfoBar.tsx
index d2402945e..b0e286fa2 100644
--- a/src/components/AppUpdateInfoBar.tsx
+++ b/src/components/AppUpdateInfoBar.tsx
@@ -2,14 +2,14 @@ import { defineMessages, useIntl } from 'react-intl';
2 2
3import { mdiInformation } from '@mdi/js'; 3import { mdiInformation } from '@mdi/js';
4import InfoBar from './ui/InfoBar'; 4import InfoBar from './ui/InfoBar';
5import { GITHUB_FERDI_URL } from '../config'; 5import { GITHUB_FERDIUM_URL } from '../config';
6import { openExternalUrl } from '../helpers/url-helpers'; 6import { openExternalUrl } from '../helpers/url-helpers';
7import { Icon } from './ui/icon'; 7import { Icon } from './ui/icon';
8 8
9const messages = defineMessages({ 9const messages = defineMessages({
10 updateAvailable: { 10 updateAvailable: {
11 id: 'infobar.updateAvailable', 11 id: 'infobar.updateAvailable',
12 defaultMessage: 'A new update for Ferdi is available.', 12 defaultMessage: 'A new update for Ferdium is available.',
13 }, 13 },
14 changelog: { 14 changelog: {
15 id: 'infobar.buttonChangelog', 15 id: 'infobar.buttonChangelog',
@@ -43,7 +43,7 @@ const AppUpdateInfoBar = ({ onInstallUpdate, onHide }: Props) => {
43 type="button" 43 type="button"
44 onClick={() => 44 onClick={() =>
45 openExternalUrl( 45 openExternalUrl(
46 `${GITHUB_FERDI_URL}/ferdi/blob/develop/CHANGELOG.md`, 46 `${GITHUB_FERDIUM_URL}/ferdium/blob/develop/CHANGELOG.md`,
47 true, 47 true,
48 ) 48 )
49 } 49 }