diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-02 21:02:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-02 21:02:45 +0100 |
commit | aca55cb192b9c2af08632076b7f87e53653acc07 (patch) | |
tree | 33d5c3a3d73b9c5f2d7f82dd3a5a9ee38d0365ca /src/lib/routes | |
parent | a20fe4c9a08b1084bda4bbe91e591cd31845e7c7 (diff) | |
download | voidsky-aca55cb192b9c2af08632076b7f87e53653acc07.tar.zst |
rename "MessagesList" to "Messages" (#3826)
Diffstat (limited to 'src/lib/routes')
-rw-r--r-- | src/lib/routes/types.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index f9a592711..f7e8544b8 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -72,7 +72,7 @@ export type MyProfileTabNavigatorParams = CommonNavigatorParams & { } export type MessagesTabNavigatorParams = CommonNavigatorParams & { - MessagesList: undefined + Messages: undefined } export type FlatNavigatorParams = CommonNavigatorParams & { @@ -81,7 +81,7 @@ export type FlatNavigatorParams = CommonNavigatorParams & { Feeds: undefined Notifications: undefined Hashtag: {tag: string; author?: string} - MessagesList: undefined + Messages: undefined } export type AllNavigatorParams = CommonNavigatorParams & { @@ -96,7 +96,7 @@ export type AllNavigatorParams = CommonNavigatorParams & { MyProfileTab: undefined Hashtag: {tag: string; author?: string} MessagesTab: undefined - MessagesList: undefined + Messages: undefined } // NOTE |