From 81af5b413d3685edd30cc95d74aa0a93561b7fc2 Mon Sep 17 00:00:00 2001 From: Eric Park Date: Sat, 20 Apr 2024 13:57:29 -0400 Subject: [PATCH] mobile: NavBar: remove unused plus icon Part of #203 --- mobile/navigation/NavBar/NavBar.tsx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/mobile/navigation/NavBar/NavBar.tsx b/mobile/navigation/NavBar/NavBar.tsx index 798b0c31..c9502c2b 100644 --- a/mobile/navigation/NavBar/NavBar.tsx +++ b/mobile/navigation/NavBar/NavBar.tsx @@ -14,10 +14,6 @@ import { Discover } from "../../Screens/Discover"; const BottomBar = createBottomTabNavigator(); -function TrackScreen() { - return null; -} - function NavBar() { const [isTrackModalVisible, setIsTrackModalVisible] = useState(false); const toggleTrackModal = () => { @@ -64,19 +60,6 @@ function NavBar() { ), }} /> - ({ - tabPress: (e) => { - e.preventDefault(); - toggleTrackModal(); - }, - })} - options={{ - tabBarIcon: () => , - }} - />