From 60f14383270456e4e7f51d96b686a6f4e2205ef8 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Thu, 16 Oct 2025 12:57:33 -0600 Subject: [PATCH] Update traktApi.ts --- src/backend/metadata/traktApi.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/backend/metadata/traktApi.ts b/src/backend/metadata/traktApi.ts index a54f7aee..c27c1856 100644 --- a/src/backend/metadata/traktApi.ts +++ b/src/backend/metadata/traktApi.ts @@ -125,7 +125,7 @@ export const getDiscoverContent = () => export const getNetworkContent = (tmdbId: string) => fetchFromTrakt(`/network/${tmdbId}`); -// Curated movie lists (replacing Letterboxd functionality) +// Curated movie lists export const getNarrativeMovies = () => fetchFromTrakt("/narrative"); export const getTopMovies = () => fetchFromTrakt("/top"); export const getLifetimeMovies = () => fetchFromTrakt("/lifetime"); @@ -133,7 +133,7 @@ export const getNeverHeardMovies = () => fetchFromTrakt("/never"); export const getLGBTQContent = () => fetchFromTrakt("/LGBTQ"); export const getMindfuckMovies = () => fetchFromTrakt("/mindfuck"); export const getTrueStoryMovies = () => fetchFromTrakt("/truestory"); -export const getGreatestTVShows = () => fetchFromTrakt("/greatesttv"); +// export const getGreatestTVShows = () => fetchFromTrakt("/greatesttv"); // We only have movies set up. TODO add a type for tv and add more tv routes. // Get all curated movie lists export const getCuratedMovieLists = async (): Promise => { @@ -173,11 +173,11 @@ export const getCuratedMovieLists = async (): Promise => { slug: "truestory", endpoint: "/truestory", }, - { - name: "Rolling Stone's 100 Greatest TV Shows", - slug: "greatesttv", - endpoint: "/greatesttv", - }, + // { + // name: "Rolling Stone's 100 Greatest TV Shows", + // slug: "greatesttv", + // endpoint: "/greatesttv", + // }, ]; const lists: CuratedMovieList[] = [];