Fix chat embeds not loading. Fixes #2744

This commit is contained in:
Gabe Kangas
2023-02-26 18:48:41 -08:00
parent 5824113112
commit 1f99b0bf22
2 changed files with 21 additions and 25 deletions

View File

@@ -10,21 +10,20 @@ import {
export default function ReadOnlyChatEmbed() {
const currentUser = useRecoilValue(currentUserAtom);
const messages = useRecoilValue<ChatMessage[]>(visibleChatMessagesSelector);
if (!currentUser) {
return null;
}
const { id, displayName } = currentUser;
return (
<div>
<ClientConfigStore />
<ChatContainer
messages={messages}
usernameToHighlight={displayName}
chatUserId={id}
isModerator={false}
showInput={false}
height="100vh"
/>
{currentUser && (
<ChatContainer
messages={messages}
usernameToHighlight={currentUser.displayName}
chatUserId={currentUser.id}
isModerator={false}
showInput={false}
height="100vh"
/>
)}
</div>
);
}