From a4f4f6822d18bdcc2336a9b236db283aeab53c3a Mon Sep 17 00:00:00 2001 From: Jorrin Date: Tue, 13 Feb 2024 23:05:46 +0100 Subject: [PATCH] ios? --- apps/expo/src/components/player/Controls.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/expo/src/components/player/Controls.tsx b/apps/expo/src/components/player/Controls.tsx index 37fb81a..99bd66c 100644 --- a/apps/expo/src/components/player/Controls.tsx +++ b/apps/expo/src/components/player/Controls.tsx @@ -1,5 +1,6 @@ import type { TouchableOpacity } from "react-native"; import React from "react"; +import { View } from "react-native"; import { TouchableWithoutFeedback } from "react-native-gesture-handler"; import { usePlayerStore } from "~/stores/player/store"; @@ -17,7 +18,7 @@ export const Controls = ({ children, className }: ControlsProps) => { className={className} onPress={() => setIsIdle(false)} > - {!idle && children} + {!idle && children} ); };