pl-fe: improve conversations page look

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2025-10-17 20:59:09 +02:00
parent e0c6127ab5
commit 6fe9102265
2 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,7 @@ const Conversation: React.FC<IConversation> = ({ conversationId, onMoveUp, onMov
onMoveUp={handleHotkeyMoveUp}
onMoveDown={handleHotkeyMoveDown}
onClick={handleClick}
variant='slim'
/>
);
};

View File

@ -46,6 +46,7 @@ const ConversationsList: React.FC = () => {
isLoading={isLoading}
showLoading={isLoading && conversations.length === 0}
emptyMessageText={<FormattedMessage id='empty_column.direct' defaultMessage="You don't have any direct messages yet. When you send or receive one, it will show up here." />}
listClassName='divide-y divide-solid divide-gray-200 dark:divide-gray-800'
>
{conversations.map((item: any) => (
<Conversation