Fix incorrect title on user badge.

This commit is contained in:
Gabe Kangas 2023-01-30 11:19:33 -08:00
parent c01b090ea7
commit 47fbe1547c
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -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" />
);