diff --git a/src/components/BottomNavigation/BottomNavigationBar.tsx b/src/components/BottomNavigation/BottomNavigationBar.tsx index 05264c610a..8bb4dfe2c3 100644 --- a/src/components/BottomNavigation/BottomNavigationBar.tsx +++ b/src/components/BottomNavigation/BottomNavigationBar.tsx @@ -671,12 +671,10 @@ const BottomNavigationBar = ({ : 1; // Scale horizontally the outline pill - const outlineScale = focused - ? active.interpolate({ - inputRange: [0, 1], - outputRange: [0.5, 1], - }) - : 0; + const outlineScale = active.interpolate({ + inputRange: [0, 1], + outputRange: focused ? [0.5, 1] : [0, 0], + }); const badge = getBadge({ route }); @@ -740,7 +738,7 @@ const BottomNavigationBar = ({ }, ]} > - {isV3 && focused && ( + {isV3 && (