diff --git a/src/components/home/AppleTVHero.tsx b/src/components/home/AppleTVHero.tsx index e06487ac..633bbd23 100644 --- a/src/components/home/AppleTVHero.tsx +++ b/src/components/home/AppleTVHero.tsx @@ -1339,11 +1339,21 @@ const AppleTVHero: React.FC = ({ onPress={handleSaveAction} activeOpacity={0.85} > - + {Platform.OS === 'ios' ? ( + + + + ) : ( + + )} @@ -1496,11 +1506,18 @@ const styles = StyleSheet.create({ height: 52, borderRadius: 30, backgroundColor: 'rgba(255,255,255,0.2)', + overflow: 'hidden', alignItems: 'center', justifyContent: 'center', borderWidth: 1.5, borderColor: 'rgba(255,255,255,0.3)', }, + saveButtonBlur: { + width: '100%', + height: '100%', + alignItems: 'center', + justifyContent: 'center', + }, paginationContainer: { flexDirection: 'row', alignItems: 'center', diff --git a/src/hooks/useSettings.ts b/src/hooks/useSettings.ts index ca9dca76..98b74aa0 100644 --- a/src/hooks/useSettings.ts +++ b/src/hooks/useSettings.ts @@ -172,7 +172,7 @@ export const DEFAULT_SETTINGS: AppSettings = { // AI aiChatEnabled: false, // Metadata enrichment - enrichMetadataWithTMDB: true, + enrichMetadataWithTMDB: false, useTmdbLocalizedMetadata: false, // Granular TMDB enrichment controls (all enabled by default for backward compatibility) tmdbEnrichCast: true,