diff --git a/components/common/Dropdown.tsx b/components/common/Dropdown.tsx index 84418a92..e30ab0b3 100644 --- a/components/common/Dropdown.tsx +++ b/components/common/Dropdown.tsx @@ -1,5 +1,5 @@ -const DropdownMenu = !Platform.isTV ? require("zeego/dropdown-menu") : null; -import { Platform, TouchableOpacity, View, ViewProps } from "react-native"; +import * as DropdownMenu from "zeego/dropdown-menu"; +import { TouchableOpacity, View, ViewProps } from "react-native"; import { Text } from "@/components/common/Text"; import React, { PropsWithChildren, @@ -33,7 +33,6 @@ const Dropdown = ({ multi = false, ...props }: PropsWithChildren & ViewProps>) => { - if (Platform.isTV) return null; const [selected, setSelected] = useState(); useEffect(() => {