From 681b27849026211d185dd1d28f1a1e9e566016cf Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 5 Jun 2024 14:53:01 -0500 Subject: [PATCH] Remove FeedsTab support, enable drawer swipe on MessagesTab --- src/lib/routes/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/routes/helpers.ts b/src/lib/routes/helpers.ts index 603b6f71b6..d8867ffc89 100644 --- a/src/lib/routes/helpers.ts +++ b/src/lib/routes/helpers.ts @@ -35,7 +35,7 @@ export function isStateAtTabRoot(state: State | undefined) { return ( isTab(currentRoute.name, 'Home') || isTab(currentRoute.name, 'Search') || - isTab(currentRoute.name, 'Feeds') || + isTab(currentRoute.name, 'MessagesTab') || isTab(currentRoute.name, 'Notifications') || isTab(currentRoute.name, 'MyProfile') )