diff --git a/app/soapbox/features/chats/index.tsx b/app/soapbox/features/chats/index.tsx index eeb34efcd..43ab6160b 100644 --- a/app/soapbox/features/chats/index.tsx +++ b/app/soapbox/features/chats/index.tsx @@ -7,7 +7,7 @@ import { launchChat } from 'soapbox/actions/chats'; import AccountSearch from 'soapbox/components/account_search'; import AudioToggle from 'soapbox/features/chats/components/audio-toggle'; -import { Column } from '../../components/ui'; +import { Column, Stack } from '../../components/ui'; import ChatList from './components/chat-list'; @@ -31,19 +31,24 @@ const ChatIndex: React.FC = () => { return ( -
- +
+ +
+ +
+ + + + +
+ Message area
- - - - ); };