fix: fix horizontal shows

This commit is contained in:
sarendsen
2025-01-15 00:47:10 +01:00
parent d9d9b0ee00
commit 0ff0fab3f4
2 changed files with 11 additions and 1 deletions

View File

@@ -104,7 +104,12 @@ export const ScrollingCollectionList: React.FC<Props> = ({
{item.Type === "Movie" && orientation === "vertical" && (
<MoviePoster item={item} />
)}
{item.Type === "Series" && <SeriesPoster item={item} />}
{item.Type === "Series" && orientation === "vertical" && (
<SeriesPoster item={item} />
)}
{item.Type === "Series" && orientation === "horizontal" && (
<ContinueWatchingPoster item={item} />
)}
{item.Type === "Program" && (
<ContinueWatchingPoster item={item} />
)}