Browse Source

Fix incorrect title on user badge.

pull/2647/head
Gabe Kangas 3 years ago
parent
commit
47fbe1547c
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 2
      web/components/chat/ChatUserBadge/AuthedUserBadge.tsx

2
web/components/chat/ChatUserBadge/AuthedUserBadge.tsx

@ -13,5 +13,5 @@ export type AuthedUserBadgeProps = { @@ -13,5 +13,5 @@ export type AuthedUserBadgeProps = {
};
export const AuthedUserBadge: FC<AuthedUserBadgeProps> = ({ userColor }) => (
<ChatUserBadge badge={<SafetyCertificateFilled />} userColor={userColor} title="Moderator" />
<ChatUserBadge badge={<SafetyCertificateFilled />} userColor={userColor} title="Authenticated" />
);

Loading…
Cancel
Save