Skip to content

Commit

Permalink
Fix repeated className
Browse files Browse the repository at this point in the history
  • Loading branch information
fjsj committed Jan 28, 2025
1 parent 8176e70 commit f118386
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ChatMessageBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ function FileAttachment({ attachment }: { attachment: AttachmentWithUrl }) {
{isDownloading ? (
<ButtonSpinner color={colorScheme === "dark" ? "black" : "white"} />
) : (
<ButtonIcon as={FileDown} className="text-typography-0 text-typography-600" />
<ButtonIcon as={FileDown} className="text-typography-100" />
)}
<ButtonText className="text-sm text-typography-0">
<ButtonText className="text-sm text-typography-100">
{attachment.title || "Attachment"}
</ButtonText>
</Button>
Expand Down

0 comments on commit f118386

Please sign in to comment.