fix: show message list.

This commit is contained in:
Wentao Lyu 2023-03-29 05:48:44 +08:00
parent 74924d2eea
commit e663270072

View file

@ -68,7 +68,7 @@ export default function Chat() {
return ( return (
<> <>
{conversationId == 'new' ? <Landing /> : <Messages />} {conversationId === 'new' && !!messagesTree?.length ? <Landing /> : <Messages />}
<TextChat /> <TextChat />
</> </>
); );