Fix text alignment

This commit is contained in:
Justin 2022-08-26 13:00:45 -04:00
parent b04bc6a7ae
commit cfa183531e

View file

@ -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>
)}