📜 refactor: Optimize Longer Message Thread Performance (#3610)

This commit is contained in:
Danny Avila 2024-08-11 06:08:08 -04:00 committed by GitHub
parent cf69b7ef85
commit 02847af580
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 59 additions and 280 deletions

View file

@ -46,7 +46,7 @@ const SearchContent = ({ message }: { message: TMessage }) => {
)}
dir="auto"
>
<MarkdownLite content={message.text ?? ''} />
<MarkdownLite content={message.text || ''} />
</div>
);
};