Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
MrQuackDuck committed Dec 13, 2024
1 parent 3d89c5f commit 380936d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/Message/ui/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const Message = forwardRef(
<CornerUpRightIcon className="w-3 h-3 text-secondary-foreground/80" />
<Username className="text-[11px]" user={repliedMessageAuthor} />
<span className="max-w-60 overflow-hidden text-ellipsis whitespace-nowrap">
<span className="text-ellipsis whitespace-nowrap">{formatText(decryptedRepliedMessageContent ?? "", theme)}</span>{" "}
<span className="text-ellipsis whitespace-nowrap">{decryptedRepliedMessageContent ?? ""}</span>{" "}
{decryptedRepliedMessageContent === undefined && <span className="text-destructive">{t("COULD_NOT_DECRYPT")}</span>}{" "}
{repliedMessage.attachments.map((attachment) => (
<span key={attachment.id} className="text-ellipsis whitespace-nowrap text-primary/70">
Expand Down

0 comments on commit 380936d

Please sign in to comment.