diff --git a/src/client/ChatPage.jsx b/src/client/ChatPage.jsx index 15c74a0..9da35d6 100644 --- a/src/client/ChatPage.jsx +++ b/src/client/ChatPage.jsx @@ -24,7 +24,7 @@ const ChatsList = ({ chats }) => { to="/chat/:id?" params={{ id: chat.id }}>
  • -
    +
    {chat.id} @@ -45,12 +45,13 @@ const ConversationsList = ({ conversations }) => {
    {filteredConversations.map((conversation, idx) => { const conversationBgColor = conversation.role === "user" ? "captn-light-blue" : "captn-dark-blue"; + const conversationTextColor = conversation.role === "user" ? "captn-dark-blue" : "captn-light-cream"; const conversationLogo = conversation.role === "user" ?
    You
    : captn logo return (
    -
    +
    -
    +
    {conversationLogo}