Skip to content

Commit

Permalink
Update error message text color
Browse files Browse the repository at this point in the history
  • Loading branch information
wong2 committed Dec 5, 2023
1 parent 23b332d commit 15e8a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/Chat/ChatMessageCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ChatMessageCard: FC<Props> = ({ message, className }) => {
) : (
!message.error && <BeatLoader size={10} className="leading-tight" color="rgb(var(--primary-text))" />
)}
{!!message.error && <p className="text-red-500">{message.error.message}</p>}
{!!message.error && <p className="text-[#cc0000] dark:text-[#ff0033]">{message.error.message}</p>}
</MessageBubble>
{!!message.error && <ErrorAction error={message.error} />}
</div>
Expand Down

0 comments on commit 15e8a99

Please sign in to comment.