mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
fix: show message list.
This commit is contained in:
parent
74924d2eea
commit
e663270072
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ export default function Chat() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{conversationId == 'new' ? <Landing /> : <Messages />}
|
{conversationId === 'new' && !!messagesTree?.length ? <Landing /> : <Messages />}
|
||||||
<TextChat />
|
<TextChat />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue