diff options
author | Eric Bailey <git@esb.lol> | 2025-09-04 19:36:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-04 19:36:23 -0500 |
commit | c129108b786a3389181c401b0bdfe1a3de528ebb (patch) | |
tree | e075d0c41c8829d9c0b66464ba7cb86dd105be4e /src/screens/Messages/ChatList.tsx | |
parent | 0b480bdaf862b0f93ed480589f81433bd6c93126 (diff) | |
download | voidsky-c129108b786a3389181c401b0bdfe1a3de528ebb.tar.zst |
108 fixes (#8977)
* Translation comment * Fix error handling in starter pack generation * Allow access to DM settings for age restricted users * Leave post stat unit formatting up to translators
Diffstat (limited to 'src/screens/Messages/ChatList.tsx')
-rw-r--r-- | src/screens/Messages/ChatList.tsx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/screens/Messages/ChatList.tsx b/src/screens/Messages/ChatList.tsx index 345446464..cb8598e79 100644 --- a/src/screens/Messages/ChatList.tsx +++ b/src/screens/Messages/ChatList.tsx @@ -74,7 +74,18 @@ export function MessagesScreen(props: Props) { return ( <AgeRestrictedScreen screenTitle={_(msg`Chats`)} - infoText={aaCopy.chatsInfoText}> + infoText={aaCopy.chatsInfoText} + rightHeaderSlot={ + <Link + to="/messages/settings" + label={_(msg`Chat settings`)} + size="small" + color="secondary"> + <ButtonText> + <Trans>Chat settings</Trans> + </ButtonText> + </Link> + }> <MessagesScreenInner {...props} /> </AgeRestrictedScreen> ) |