remove tooltip

This commit is contained in:
StarAppeal
2024-12-07 18:49:59 +01:00
parent dc4cb2a6e2
commit d948efb1b5
-6
View File
@@ -4,8 +4,6 @@ import {Feather} from "@expo/vector-icons";
import {useTheme} from "@/src/context/ThemeProvider";
import AuthenticatedWrapper from "@/src/components/AuthenticatedWrapper";
import {Dimensions} from "react-native";
import {Tooltip} from "react-native-paper";
const screenWidth = Dimensions.get("window").width;
@@ -64,11 +62,7 @@ export default function TabLayout() {
options={{
title: shouldHideText ? '' : title,
tabBarIcon: ({color}) => (
<Tooltip
title={title}
>
<Feather size={28} name={icon} color={color}/>
</Tooltip>
),
}}
/>