diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx
index ea97b3ce26..bbecb2e0aa 100644
--- a/src/view/shell/bottom-bar/BottomBar.tsx
+++ b/src/view/shell/bottom-bar/BottomBar.tsx
@@ -147,12 +147,12 @@ export function BottomBar({navigation}: BottomTabBarProps) {
icon={
isAtHome ? (
) : (
)
@@ -167,12 +167,12 @@ export function BottomBar({navigation}: BottomTabBarProps) {
icon={
isAtSearch ? (
) : (
)
@@ -182,32 +182,6 @@ export function BottomBar({navigation}: BottomTabBarProps) {
accessibilityLabel={_(msg`Search`)}
accessibilityHint=""
/>
-
- ) : (
-
- )
- }
- onPress={onPressNotifications}
- notificationCount={numUnreadNotifications}
- accessible={true}
- accessibilityRole="tab"
- accessibilityLabel={_(msg`Notifications`)}
- accessibilityHint={
- numUnreadNotifications === ''
- ? ''
- : `${numUnreadNotifications} unread`
- }
- />
{gate('dms') && (
)}
+
+ ) : (
+
+ )
+ }
+ onPress={onPressNotifications}
+ notificationCount={numUnreadNotifications}
+ accessible={true}
+ accessibilityRole="tab"
+ accessibilityLabel={_(msg`Notifications`)}
+ accessibilityHint={
+ numUnreadNotifications === ''
+ ? ''
+ : `${numUnreadNotifications} unread`
+ }
+ />
)
@@ -92,7 +92,7 @@ export function BottomBarWeb() {
const Icon = isActive ? MagnifyingGlassFilled : MagnifyingGlass
return (
)
@@ -101,17 +101,6 @@ export function BottomBarWeb() {
{hasSession && (
<>
-
- {({isActive}) => {
- const Icon = isActive ? BellFilled : Bell
- return (
-
- )
- }}
-
{gate('dms') && (
{({isActive}) => {
@@ -125,6 +114,17 @@ export function BottomBarWeb() {
}}
)}
+
+ {({isActive}) => {
+ const Icon = isActive ? BellFilled : Bell
+ return (
+
+ )
+ }}
+
)