chore: cleanup

This commit is contained in:
Adrian Castro
2024-02-14 11:46:57 +01:00
parent a2b70eee3a
commit 1fad7dbfc6

View File

@@ -10,6 +10,5 @@ interface ControlsProps extends React.ComponentProps<typeof TouchableOpacity> {
export const Controls = ({ children }: ControlsProps) => {
const idle = usePlayerStore((state) => state.interface.isIdle);
return <View>{!idle && children}</View>;
};