Fix text alignment

alex-chats
Justin 2022-08-26 13:00:45 -04:00
rodzic b04bc6a7ae
commit cfa183531e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -35,7 +35,7 @@ const Chat: React.FC<IChatInterface> = ({ chat, onClick }) => {
</div>
{chat.last_message?.content && (
<Text size='sm' weight='medium' theme='muted' truncate className='max-w-[200px]'>
<Text align='left' size='sm' weight='medium' theme='muted' truncate className='max-w-[200px]'>
{chat.last_message?.content}
</Text>
)}