diff --git a/apps/native/.gitignore b/apps/native/.gitignore
index dd07f5c..525476c 100644
--- a/apps/native/.gitignore
+++ b/apps/native/.gitignore
@@ -8,6 +8,7 @@ npm-debug.*
*.key
*.mobileprovision
*.orig.*
+*.tar.gz
web-build/
# macOS
diff --git a/apps/native/eas.json b/apps/native/eas.json
index a5d0906..286a8a1 100644
--- a/apps/native/eas.json
+++ b/apps/native/eas.json
@@ -5,14 +5,14 @@
},
"build": {
"production": {
- "autoIncrement": true,
- "ios": {
- "resourceClass": "m-medium"
- }
+ "autoIncrement": true
},
"development": {
"developmentClient": true,
- "distribution": "internal"
+ "distribution": "internal",
+ "ios": {
+ "simulator": true
+ }
}
},
"submit": {
diff --git a/apps/native/src/app/title/[id].tsx b/apps/native/src/app/title/[id].tsx
index 79e8bb9..876afe0 100644
--- a/apps/native/src/app/title/[id].tsx
+++ b/apps/native/src/app/title/[id].tsx
@@ -305,8 +305,19 @@ export default function TitleDetailScreen() {
)}
{/* Bottom fade to background */}
{title.trailerVideoKey && (
@@ -385,27 +396,6 @@ export default function TitleDetailScreen() {
- {/* Ambient color glow below hero */}
- {(() => {
- const glowColor =
- palette?.vibrant ?? palette?.darkMuted ?? palette?.muted;
- if (!glowColor) return null;
- return (
-
-
-
- );
- })()}
-
{/* Genres */}
{title.genres && title.genres.length > 0 && (