From 1bc582c6c4adb4dc876b83a85fb6bf1a4ec3bb65 Mon Sep 17 00:00:00 2001 From: Dylan Jeffers Date: Fri, 16 Feb 2024 14:49:56 -0800 Subject: [PATCH] [C-3852] Fix android bottom bar button colors --- .../bottom-tab-bar-buttons/BottomTabBarButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/mobile/src/components/bottom-tab-bar/bottom-tab-bar-buttons/BottomTabBarButton.tsx b/packages/mobile/src/components/bottom-tab-bar/bottom-tab-bar-buttons/BottomTabBarButton.tsx index bb91208a464..6ea62d85e23 100644 --- a/packages/mobile/src/components/bottom-tab-bar/bottom-tab-bar-buttons/BottomTabBarButton.tsx +++ b/packages/mobile/src/components/bottom-tab-bar/bottom-tab-bar-buttons/BottomTabBarButton.tsx @@ -74,7 +74,7 @@ const BottomTabBarRiveButton = (props: BottomTabBarRiveButtonProps) => { useEffect(() => { if (previousActive && !isActive) { - riveRef.current?.stop() + riveRef.current?.reset() } }, [isActive, previousActive])