This commit is contained in:
Wentao Lyu 2023-03-29 06:44:18 +08:00
parent e663270072
commit e706f0ea9e

View file

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