Skip to content

Commit

Permalink
fixing mark as unread leable
Browse files Browse the repository at this point in the history
  • Loading branch information
bwebs committed Dec 11, 2024
1 parent 7975ad6 commit d57d9b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const MessageActions: React.FunctionComponent<{
: getTimeAgo(archived ? archived : created);

const markAsReadLabel = labels?.markAsRead ?? "Mark as Read";
const markUnreadLabel = labels?.markAsRead ?? "Mark Unread";
const markUnreadLabel = labels?.markAsUnread ?? "Mark Unread";
const archiveLabel = labels?.archiveMessage ?? "Archive Message";

useClickOutside(mobileActionsRef, (event) => {
Expand Down

0 comments on commit d57d9b3

Please sign in to comment.