diff --git a/components/search/SearchTabButtons.tsx b/components/search/SearchTabButtons.tsx index 55510e52e..600de2ac8 100644 --- a/components/search/SearchTabButtons.tsx +++ b/components/search/SearchTabButtons.tsx @@ -1,7 +1,6 @@ -import { Button, Host } from "@expo/ui/swift-ui"; +import { Button, Host, HStack, Spacer } from "@expo/ui/swift-ui"; import { buttonStyle } from "@expo/ui/swift-ui/modifiers"; import { Platform, TouchableOpacity, View } from "react-native"; -import { Text } from "@/components/common/Text"; import { Tag } from "@/components/GenreTags"; type SearchType = "Library" | "Discover"; @@ -19,16 +18,8 @@ export const SearchTabButtons: React.FC = ({ }) => { if (Platform.OS === "ios") { return ( - <> - + + - - + label={t("search.library")} + /> - - + label={t("search.discover")} + /> + + + ); }