From bf2750186d955db33df44fb6f213273b3ce3e189 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 5 Jun 2024 14:54:19 -0500 Subject: [PATCH] Add note --- src/lib/hooks/useNavigationTabState.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/hooks/useNavigationTabState.ts b/src/lib/hooks/useNavigationTabState.ts index c70653e3a7..e1fa950089 100644 --- a/src/lib/hooks/useNavigationTabState.ts +++ b/src/lib/hooks/useNavigationTabState.ts @@ -7,6 +7,7 @@ export function useNavigationTabState() { const res = { isAtHome: getTabState(state, 'Home') !== TabState.Outside, isAtSearch: getTabState(state, 'Search') !== TabState.Outside, + // FeedsTab no longer exists, but this check works for `Feeds` screen as well isAtFeeds: getTabState(state, 'Feeds') !== TabState.Outside, isAtNotifications: getTabState(state, 'Notifications') !== TabState.Outside,