fix(settings): remove beta info banner (#2615)
This commit is contained in:
@@ -7,7 +7,6 @@ import Releases from '@app/components/Settings/SettingsAbout/Releases';
|
|||||||
import globalMessages from '@app/i18n/globalMessages';
|
import globalMessages from '@app/i18n/globalMessages';
|
||||||
import Error from '@app/pages/_error';
|
import Error from '@app/pages/_error';
|
||||||
import defineMessages from '@app/utils/defineMessages';
|
import defineMessages from '@app/utils/defineMessages';
|
||||||
import { InformationCircleIcon } from '@heroicons/react/24/solid';
|
|
||||||
import type {
|
import type {
|
||||||
SettingsAboutResponse,
|
SettingsAboutResponse,
|
||||||
StatusResponse,
|
StatusResponse,
|
||||||
@@ -30,8 +29,6 @@ const messages = defineMessages('components.Settings.SettingsAbout', {
|
|||||||
documentation: 'Documentation',
|
documentation: 'Documentation',
|
||||||
outofdate: 'Out of Date',
|
outofdate: 'Out of Date',
|
||||||
uptodate: 'Up to Date',
|
uptodate: 'Up to Date',
|
||||||
betawarning:
|
|
||||||
'This is BETA software. Features may be broken and/or unstable. Please report any issues on GitHub!',
|
|
||||||
runningDevelop:
|
runningDevelop:
|
||||||
'You are running the <code>develop</code> branch of Seerr, which is only recommended for those contributing to development or assisting with bleeding-edge testing.',
|
'You are running the <code>develop</code> 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(globalMessages.settings),
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<div className="mt-6 rounded-md border border-indigo-500 bg-indigo-400/20 p-4 backdrop-blur">
|
|
||||||
<div className="flex">
|
|
||||||
<div className="flex-shrink-0">
|
|
||||||
<InformationCircleIcon className="h-5 w-5 text-gray-100" />
|
|
||||||
</div>
|
|
||||||
<div className="ml-3 flex-1 md:flex md:justify-between">
|
|
||||||
<p className="text-sm leading-5 text-gray-100">
|
|
||||||
{intl.formatMessage(messages.betawarning)}
|
|
||||||
</p>
|
|
||||||
<p className="mt-3 text-sm leading-5 md:ml-6 md:mt-0">
|
|
||||||
<a
|
|
||||||
href="http://github.com/seerr-team/seerr"
|
|
||||||
className="whitespace-nowrap font-medium text-gray-100 transition duration-150 ease-in-out hover:text-white"
|
|
||||||
target="_blank"
|
|
||||||
rel="noreferrer"
|
|
||||||
>
|
|
||||||
GitHub →
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="section">
|
<div className="section">
|
||||||
<List title={intl.formatMessage(messages.aboutseerr)}>
|
<List title={intl.formatMessage(messages.aboutseerr)}>
|
||||||
{data.version.startsWith('develop-') && (
|
{data.version.startsWith('develop-') && (
|
||||||
|
|||||||
@@ -863,7 +863,6 @@
|
|||||||
"components.Settings.SettingsAbout.about": "About",
|
"components.Settings.SettingsAbout.about": "About",
|
||||||
"components.Settings.SettingsAbout.aboutseerr": "About Seerr",
|
"components.Settings.SettingsAbout.aboutseerr": "About Seerr",
|
||||||
"components.Settings.SettingsAbout.appDataPath": "Data Directory",
|
"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.contribute": "Make a Contribution",
|
||||||
"components.Settings.SettingsAbout.documentation": "Documentation",
|
"components.Settings.SettingsAbout.documentation": "Documentation",
|
||||||
"components.Settings.SettingsAbout.gettingsupport": "Getting Support",
|
"components.Settings.SettingsAbout.gettingsupport": "Getting Support",
|
||||||
|
|||||||
Reference in New Issue
Block a user