diff --git a/src/components/Layout/UserWarnings/index.tsx b/src/components/Layout/UserWarnings/index.tsx index ec32ecc6b..592758c60 100644 --- a/src/components/Layout/UserWarnings/index.tsx +++ b/src/components/Layout/UserWarnings/index.tsx @@ -1,5 +1,5 @@ import { useUser } from '@app/hooks/useUser'; -import { ExclamationIcon } from '@heroicons/react/outline'; +import { ExclamationTriangleIcon } from '@heroicons/react/24/outline'; import Link from 'next/link'; import type React from 'react'; import { defineMessages, useIntl } from 'react-intl'; @@ -49,7 +49,7 @@ const UserWarnings: React.FC = ({ onClick }) => { tabIndex={0} className="mx-2 mb-2 flex items-center rounded-lg bg-yellow-500 p-2 text-xs text-white ring-1 ring-gray-700 transition duration-300 hover:bg-yellow-400" > - +
{warningTitle} {warningText} diff --git a/src/components/Settings/SettingsJellyfin.tsx b/src/components/Settings/SettingsJellyfin.tsx index bf6e18297..f4834582c 100644 --- a/src/components/Settings/SettingsJellyfin.tsx +++ b/src/components/Settings/SettingsJellyfin.tsx @@ -3,7 +3,7 @@ import Button from '@app/components/Common/Button'; import LoadingSpinner from '@app/components/Common/LoadingSpinner'; import LibraryItem from '@app/components/Settings/LibraryItem'; import globalMessages from '@app/i18n/globalMessages'; -import { SaveIcon } from '@heroicons/react/outline'; +import { ArrowDownOnSquareIcon } from '@heroicons/react/24/outline'; import type { JellyfinSettings } from '@server/lib/settings'; import axios from 'axios'; import { Field, Formik } from 'formik'; @@ -417,7 +417,7 @@ const SettingsJellyfin: React.FC = ({ type="submit" disabled={isSubmitting || !isValid} > - + {isSubmitting ? intl.formatMessage(globalMessages.saving)