From 0f694480818dafc1c703218930cf9cefbfc79f2e Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Tue, 31 Dec 2024 13:40:23 +0100 Subject: [PATCH] fix: design --- .../jellyseerr/page.tsx | 2 +- components/series/JellyseerrSeasons.tsx | 24 ++++++++----------- 2 files changed, 11 insertions(+), 15 deletions(-) diff --git a/app/(auth)/(tabs)/(home,libraries,search)/jellyseerr/page.tsx b/app/(auth)/(tabs)/(home,libraries,search)/jellyseerr/page.tsx index 4acd8053..edf91697 100644 --- a/app/(auth)/(tabs)/(home,libraries,search)/jellyseerr/page.tsx +++ b/app/(auth)/(tabs)/(home,libraries,search)/jellyseerr/page.tsx @@ -153,7 +153,7 @@ const Page: React.FC = () => { > - + diff --git a/components/series/JellyseerrSeasons.tsx b/components/series/JellyseerrSeasons.tsx index b2a0d2ce..f0efa418 100644 --- a/components/series/JellyseerrSeasons.tsx +++ b/components/series/JellyseerrSeasons.tsx @@ -155,20 +155,16 @@ const JellyseerrSeasons: React.FC<{ const promptRequestAll = useCallback( () => - Alert.alert( - "Request all?", - "Are you sure you want to request all seasons?", - [ - { - text: "Cancel", - style: "cancel", - }, - { - text: "YES", - onPress: requestAll, - }, - ] - ), + Alert.alert("Confirm", "Are you sure you want to request all seasons?", [ + { + text: "Cancel", + style: "cancel", + }, + { + text: "Yes", + onPress: requestAll, + }, + ]), [requestAll] );