fix: Administrator label in users table (#2)

This commit is contained in:
Michael Hespenheide 2024-03-11 20:29:40 -04:00 committed by GitHub
parent a2245efa2d
commit 2cff2676f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -23,7 +23,7 @@ export function ProfileSettings() {
return formatMessage(labels.user);
}
if (value === ROLES.admin) {
return formatMessage(labels.administrator);
return formatMessage(labels.admin);
}
if (value === ROLES.viewOnly) {
return formatMessage(labels.viewOnly);