diff --git a/components/ItemContent.tv.tsx b/components/ItemContent.tv.tsx
index a26dde7e..153142ee 100644
--- a/components/ItemContent.tv.tsx
+++ b/components/ItemContent.tv.tsx
@@ -467,88 +467,6 @@ const TVOptionCard: React.FC<{
);
};
-// Glass-style back button for TV (Apple TV design)
-const TVBackButton: React.FC<{
- onPress: () => void;
-}> = ({ onPress }) => {
- const [focused, setFocused] = useState(false);
- const scale = useRef(new Animated.Value(1)).current;
-
- const animateTo = (v: number) =>
- Animated.timing(scale, {
- toValue: v,
- duration: 150,
- easing: Easing.out(Easing.quad),
- useNativeDriver: true,
- }).start();
-
- return (
- {
- setFocused(true);
- animateTo(1.08);
- }}
- onBlur={() => {
- setFocused(false);
- animateTo(1);
- }}
- style={{ alignSelf: "flex-start", marginBottom: 20 }}
- >
-
-
-
-
-
- Back
-
-
-
-
-
- );
-};
-
// Button to open option selector
const TVOptionButton: React.FC<{
label: string;
@@ -929,9 +847,6 @@ export const ItemContentTV: React.FC = React.memo(
marginRight: 50,
}}
>
- {/* Glass back button */}
- router.back()} />
-
{/* Poster */}