diff --git a/app/soapbox/features/chats/components/chat-page/components/chat-page-main.tsx b/app/soapbox/features/chats/components/chat-page/components/chat-page-main.tsx index 9b767e29d8..85b8922652 100644 --- a/app/soapbox/features/chats/components/chat-page/components/chat-page-main.tsx +++ b/app/soapbox/features/chats/components/chat-page/components/chat-page-main.tsx @@ -1,6 +1,6 @@ import React, { useRef } from 'react'; import { defineMessages, useIntl } from 'react-intl'; -import { useHistory, useParams } from 'react-router-dom'; +import { Link, useHistory, useParams } from 'react-router-dom'; import { blockAccount, unblockAccount } from 'soapbox/actions/accounts'; import { openModal } from 'soapbox/actions/modals'; @@ -113,13 +113,19 @@ const ChatPageMain = () => { onClick={() => history.push('/chats')} /> - + + +
- {chat.account?.display_name || `@${chat.account.username}`} - {chat.account?.verified && } + + + {chat.account.display_name || `@${chat.account.username}`} + + + {chat.account.verified && }
{chat.message_expiration && (