From 14208eef11b1598af7b9bfc855e608c231850d4d Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 12 Apr 2024 10:21:55 -0700 Subject: [PATCH] Fix: dont let notifications count go behind the icon (#3505) --- src/view/shell/bottom-bar/BottomBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index c35fa106d2..4caff6c4d9 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -348,12 +348,12 @@ function Btn({ accessible={accessible} accessibilityLabel={accessibilityLabel} accessibilityHint={accessibilityHint}> + {icon} {notificationCount ? ( {notificationCount} ) : undefined} - {icon} ) }