From ce3df78d8af5264c145a97cbcb243a97561316ef Mon Sep 17 00:00:00 2001 From: Tejas Panchal Date: Mon, 23 Feb 2026 00:58:46 +0530 Subject: [PATCH] made related anime to max width --- src/pages/watch/Watch.jsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/pages/watch/Watch.jsx b/src/pages/watch/Watch.jsx index 9033d4d..1824eab 100644 --- a/src/pages/watch/Watch.jsx +++ b/src/pages/watch/Watch.jsx @@ -289,7 +289,7 @@ export default function Watch() { {/* Episode List (Mobile only) */} -
+
{!episodes ? (
@@ -354,7 +354,7 @@ export default function Watch() { {/* Seasons (Mobile only) */} {seasons?.length > 0 && ( -
+

More Seasons

{seasons.map((season, idx) => ( @@ -373,6 +373,14 @@ export default function Watch() {
)} + + {/* Related Anime (Mobile only) */} + {!animeInfoLoading && animeInfo?.related_data?.length > 0 && ( +
+

Related Anime

+ +
+ )}
{/* Right Column (Desktop Only) */} @@ -399,13 +407,7 @@ export default function Watch() { )}
- {/* Related Anime (Mobile only) */} - {!animeInfoLoading && animeInfo?.related_data?.length > 0 && ( -
-

Related Anime

- -
- )} +