diff --git a/src/components/Settings/SettingsAbout/index.tsx b/src/components/Settings/SettingsAbout/index.tsx index bf3e8554..7bd38d47 100644 --- a/src/components/Settings/SettingsAbout/index.tsx +++ b/src/components/Settings/SettingsAbout/index.tsx @@ -7,7 +7,6 @@ import Releases from '@app/components/Settings/SettingsAbout/Releases'; import globalMessages from '@app/i18n/globalMessages'; import Error from '@app/pages/_error'; import defineMessages from '@app/utils/defineMessages'; -import { InformationCircleIcon } from '@heroicons/react/24/solid'; import type { SettingsAboutResponse, StatusResponse, @@ -30,8 +29,6 @@ const messages = defineMessages('components.Settings.SettingsAbout', { documentation: 'Documentation', outofdate: 'Out of Date', uptodate: 'Up to Date', - betawarning: - 'This is BETA software. Features may be broken and/or unstable. Please report any issues on GitHub!', runningDevelop: 'You are running the develop branch of Seerr, which is only recommended for those contributing to development or assisting with bleeding-edge testing.', }); @@ -60,28 +57,6 @@ const SettingsAbout = () => { intl.formatMessage(globalMessages.settings), ]} /> -
-
-
- -
-
-

- {intl.formatMessage(messages.betawarning)} -

-

- - GitHub → - -

-
-
-
{data.version.startsWith('develop-') && ( diff --git a/src/i18n/locale/en.json b/src/i18n/locale/en.json index 12c54be1..251a4228 100644 --- a/src/i18n/locale/en.json +++ b/src/i18n/locale/en.json @@ -863,7 +863,6 @@ "components.Settings.SettingsAbout.about": "About", "components.Settings.SettingsAbout.aboutseerr": "About Seerr", "components.Settings.SettingsAbout.appDataPath": "Data Directory", - "components.Settings.SettingsAbout.betawarning": "This is BETA software. Features may be broken and/or unstable. Please report any issues on GitHub!", "components.Settings.SettingsAbout.contribute": "Make a Contribution", "components.Settings.SettingsAbout.documentation": "Documentation", "components.Settings.SettingsAbout.gettingsupport": "Getting Support",