mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
Merge remote-tracking branch 'o/develop' into develop
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import PageTitle from '@app/components/Common/PageTitle';
|
||||
import { ArrowCircleRightIcon } from '@heroicons/react/outline';
|
||||
import { ArrowRightCircleIcon } from '@heroicons/react/24/outline';
|
||||
import Link from 'next/link';
|
||||
import { defineMessages, useIntl } from 'react-intl';
|
||||
|
||||
@@ -24,7 +24,7 @@ const Custom404 = () => {
|
||||
<Link href="/">
|
||||
<a className="mt-2 flex">
|
||||
{intl.formatMessage(messages.returnHome)}
|
||||
<ArrowCircleRightIcon className="ml-2 h-6 w-6" />
|
||||
<ArrowRightCircleIcon className="ml-2 h-6 w-6" />
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import PageTitle from '@app/components/Common/PageTitle';
|
||||
import type { Undefinable } from '@app/utils/typeHelpers';
|
||||
import { ArrowCircleRightIcon } from '@heroicons/react/outline';
|
||||
import { ArrowRightCircleIcon } from '@heroicons/react/24/outline';
|
||||
import type { NextPage } from 'next';
|
||||
import Link from 'next/link';
|
||||
import { defineMessages, useIntl } from 'react-intl';
|
||||
@@ -47,7 +47,7 @@ const Error: NextPage<ErrorProps> = ({ statusCode }) => {
|
||||
<Link href="/">
|
||||
<a className="mt-2 flex">
|
||||
{intl.formatMessage(messages.returnHome)}
|
||||
<ArrowCircleRightIcon className="ml-2 h-6 w-6" />
|
||||
<ArrowRightCircleIcon className="ml-2 h-6 w-6" />
|
||||
</a>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
8
src/pages/discover/movies/keyword/index.tsx
Normal file
8
src/pages/discover/movies/keyword/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import DiscoverMovieKeyword from '@app/components/Discover/DiscoverMovieKeyword';
|
||||
import type { NextPage } from 'next';
|
||||
|
||||
const DiscoverMoviesKeywordPage: NextPage = () => {
|
||||
return <DiscoverMovieKeyword />;
|
||||
};
|
||||
|
||||
export default DiscoverMoviesKeywordPage;
|
||||
8
src/pages/discover/tv/keyword/index.tsx
Normal file
8
src/pages/discover/tv/keyword/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import DiscoverTvKeyword from '@app/components/Discover/DiscoverTvKeyword';
|
||||
import type { NextPage } from 'next';
|
||||
|
||||
const DiscoverTvKeywordPage: NextPage = () => {
|
||||
return <DiscoverTvKeyword />;
|
||||
};
|
||||
|
||||
export default DiscoverTvKeywordPage;
|
||||
Reference in New Issue
Block a user