From f247642b76ebefd9eeb8aed485573b5d6b133673 Mon Sep 17 00:00:00 2001 From: andrewkolda <158614532+andrewkolda@users.noreply.github.com> Date: Sun, 19 Jan 2025 15:15:54 -0700 Subject: [PATCH] fix: make watchlist buttons consistent (#1272) fix #1270 Co-authored-by: andrewkolda --- src/components/MovieDetails/index.tsx | 4 ++-- src/components/TvDetails/index.tsx | 8 +++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/components/MovieDetails/index.tsx b/src/components/MovieDetails/index.tsx index 8a78f994b..e4087f201 100644 --- a/src/components/MovieDetails/index.tsx +++ b/src/components/MovieDetails/index.tsx @@ -38,14 +38,14 @@ import { ExclamationTriangleIcon, EyeSlashIcon, FilmIcon, + MinusCircleIcon, PlayIcon, + StarIcon, TicketIcon, } from '@heroicons/react/24/outline'; import { ChevronDoubleDownIcon, ChevronDoubleUpIcon, - MinusCircleIcon, - StarIcon, } from '@heroicons/react/24/solid'; import { type RatingResponse } from '@server/api/ratings'; import { IssueStatus } from '@server/constants/issue'; diff --git a/src/components/TvDetails/index.tsx b/src/components/TvDetails/index.tsx index 0c10ed10a..e91d1a5f9 100644 --- a/src/components/TvDetails/index.tsx +++ b/src/components/TvDetails/index.tsx @@ -41,13 +41,11 @@ import { ExclamationTriangleIcon, EyeSlashIcon, FilmIcon, - PlayIcon, -} from '@heroicons/react/24/outline'; -import { - ChevronDownIcon, MinusCircleIcon, + PlayIcon, StarIcon, -} from '@heroicons/react/24/solid'; +} from '@heroicons/react/24/outline'; +import { ChevronDownIcon } from '@heroicons/react/24/solid'; import type { RTRating } from '@server/api/rating/rottentomatoes'; import { ANIME_KEYWORD_ID } from '@server/api/themoviedb/constants'; import { IssueStatus } from '@server/constants/issue';