revert i18n on credential kind (API translates it)

This commit is contained in:
Keith Grant 2019-07-15 15:20:05 -07:00
parent db4a964e64
commit 183bd4fa80

View File

@ -13,7 +13,7 @@ function CredentialChip({ credential, i18n, ...props }) {
} else if (credential.kind === 'aws' || credential.kind === 'ssh') {
type = credential.kind.toUpperCase();
} else {
type = i18n._(toTitleCase(credential.kind));
type = toTitleCase(credential.kind);
}
return (