From bde322de8e67c1c602edaafe646c816511a66bb7 Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <31414959+0xSysR3ll@users.noreply.github.com> Date: Fri, 21 Nov 2025 22:24:14 +0100 Subject: [PATCH] fix(override-rules): show correct genres for both *arr services (#2155) --- src/components/Selector/index.tsx | 7 ++----- .../Settings/OverrideRule/OverrideRuleModal.tsx | 8 +++++++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/Selector/index.tsx b/src/components/Selector/index.tsx index b8d078876..adf69eb4d 100644 --- a/src/components/Selector/index.tsx +++ b/src/components/Selector/index.tsx @@ -12,7 +12,6 @@ import type { TmdbGenre, TmdbKeywordSearchResponse, } from '@server/api/themoviedb/interfaces'; -import type { GenreSliderItem } from '@server/interfaces/api/discoverInterfaces'; import type { UserResultsResponse } from '@server/interfaces/api/userInterfaces'; import type { Keyword, @@ -185,9 +184,7 @@ export const GenreSelector = ({ }, [defaultValue, type]); const loadGenreOptions = async (inputValue: string) => { - const results = await axios.get( - `/api/v1/discover/genreslider/${type}` - ); + const results = await axios.get(`/api/v1/genres/${type}`); return results.data .map((result) => ({ @@ -201,7 +198,7 @@ export const GenreSelector = ({ return (