diff --git a/src/components/BottomNavigation/BottomNavigationBar.tsx b/src/components/BottomNavigation/BottomNavigationBar.tsx index 0bfe303bfb..789c38829e 100644 --- a/src/components/BottomNavigation/BottomNavigationBar.tsx +++ b/src/components/BottomNavigation/BottomNavigationBar.tsx @@ -360,7 +360,9 @@ const BottomNavigationBar = ({ navigationState, renderIcon, renderLabel, - renderTouchable = (props: TouchableProps) => , + renderTouchable = ({ key, ...props }: TouchableProps) => ( + + ), getLabelText = ({ route }: { route: Route }) => route.title, getBadge = ({ route }: { route: Route }) => route.badge, getColor = ({ route }: { route: Route }) => route.color,