From d86a2087788920fe09bf89784ebfe31360cd2d3b Mon Sep 17 00:00:00 2001 From: tapframe Date: Sat, 3 May 2025 14:21:24 +0530 Subject: [PATCH] Remove unused ActivityIndicator from FeaturedContent component to streamline code and improve readability. --- src/components/home/FeaturedContent.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/components/home/FeaturedContent.tsx b/src/components/home/FeaturedContent.tsx index 54b21042..e2dc4136 100644 --- a/src/components/home/FeaturedContent.tsx +++ b/src/components/home/FeaturedContent.tsx @@ -8,8 +8,7 @@ import { Dimensions, ViewStyle, TextStyle, - ImageStyle, - ActivityIndicator + ImageStyle } from 'react-native'; import { NavigationProp, useNavigation } from '@react-navigation/native'; import { RootStackParamList } from '../../navigation/AppNavigator'; @@ -284,12 +283,6 @@ const FeaturedContent = ({ featuredContent, isSaved, handleSaveToLibrary }: Feat - - {!posterLoaded && ( - - - - )} ); };