rename "MessagesList" to "Messages" (#3826)

This commit is contained in:
Samuel Newman
2024-05-02 21:02:45 +01:00
committed by GitHub
parent a20fe4c9a0
commit aca55cb192
8 changed files with 18 additions and 15 deletions
@@ -1,4 +1,5 @@
import {useNavigationState} from '@react-navigation/native'
import {getCurrentRoute} from 'lib/routes/helpers'
export function useNavigationTabState() {
@@ -9,6 +10,7 @@ export function useNavigationTabState() {
isAtSearch: currentRoute === 'Search',
isAtNotifications: currentRoute === 'Notifications',
isAtMyProfile: currentRoute === 'MyProfile',
isAtMessages: currentRoute === 'Messages',
}
})
}