mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-04 21:58:39 -05:00
refactor: absolute imports with path alias (#2960) [skip ci]
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import DiscoverMovieGenre from '@app/components/Discover/DiscoverMovieGenre';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverMovieGenre from '../../../../../components/Discover/DiscoverMovieGenre';
|
||||
|
||||
const DiscoverMoviesGenrePage: NextPage = () => {
|
||||
return <DiscoverMovieGenre />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import MovieGenreList from '@app/components/Discover/MovieGenreList';
|
||||
import type { NextPage } from 'next';
|
||||
import MovieGenreList from '../../../components/Discover/MovieGenreList';
|
||||
|
||||
const MovieGenresPage: NextPage = () => {
|
||||
return <MovieGenreList />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverMovies from '@app/components/Discover/DiscoverMovies';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverMovies from '../../../components/Discover/DiscoverMovies';
|
||||
|
||||
const DiscoverMoviesPage: NextPage = () => {
|
||||
return <DiscoverMovies />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverMovieLanguage from '@app/components/Discover/DiscoverMovieLanguage';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverMovieLanguage from '../../../../../components/Discover/DiscoverMovieLanguage';
|
||||
|
||||
const DiscoverMovieLanguagePage: NextPage = () => {
|
||||
return <DiscoverMovieLanguage />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverMovieStudio from '@app/components/Discover/DiscoverStudio';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverMovieStudio from '../../../../../components/Discover/DiscoverStudio';
|
||||
|
||||
const DiscoverMoviesStudioPage: NextPage = () => {
|
||||
return <DiscoverMovieStudio />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import UpcomingMovies from '@app/components/Discover/Upcoming';
|
||||
import type { NextPage } from 'next';
|
||||
import UpcomingMovies from '../../../components/Discover/Upcoming';
|
||||
|
||||
const UpcomingMoviesPage: NextPage = () => {
|
||||
return <UpcomingMovies />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import Trending from '@app/components/Discover/Trending';
|
||||
import type { NextPage } from 'next';
|
||||
import Trending from '../../components/Discover/Trending';
|
||||
|
||||
const TrendingPage: NextPage = () => {
|
||||
return <Trending />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverTvGenre from '@app/components/Discover/DiscoverTvGenre';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverTvGenre from '../../../../../components/Discover/DiscoverTvGenre';
|
||||
|
||||
const DiscoverTvGenrePage: NextPage = () => {
|
||||
return <DiscoverTvGenre />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import TvGenreList from '@app/components/Discover/TvGenreList';
|
||||
import type { NextPage } from 'next';
|
||||
import TvGenreList from '../../../components/Discover/TvGenreList';
|
||||
|
||||
const TvGenresPage: NextPage = () => {
|
||||
return <TvGenreList />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverTv from '@app/components/Discover/DiscoverTv';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverTv from '../../../components/Discover/DiscoverTv';
|
||||
|
||||
const DiscoverTvPage: NextPage = () => {
|
||||
return <DiscoverTv />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverTvLanguage from '@app/components/Discover/DiscoverTvLanguage';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverTvLanguage from '../../../../../components/Discover/DiscoverTvLanguage';
|
||||
|
||||
const DiscoverTvLanguagePage: NextPage = () => {
|
||||
return <DiscoverTvLanguage />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverNetwork from '@app/components/Discover/DiscoverNetwork';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverNetwork from '../../../../../components/Discover/DiscoverNetwork';
|
||||
|
||||
const DiscoverTvNetworkPage: NextPage = () => {
|
||||
return <DiscoverNetwork />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverTvUpcoming from '@app/components/Discover/DiscoverTvUpcoming';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverTvUpcoming from '../../../components/Discover/DiscoverTvUpcoming';
|
||||
|
||||
const DiscoverTvPage: NextPage = () => {
|
||||
return <DiscoverTvUpcoming />;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import DiscoverWatchlist from '@app/components/Discover/DiscoverWatchlist';
|
||||
import type { NextPage } from 'next';
|
||||
import DiscoverWatchlist from '../../components/Discover/DiscoverWatchlist';
|
||||
|
||||
const WatchlistPage: NextPage = () => {
|
||||
return <DiscoverWatchlist />;
|
||||
|
||||
Reference in New Issue
Block a user