0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): fix platform label prefix caused by merge (#1049)

This commit is contained in:
Wang Sijie 2022-06-06 11:59:48 +08:00 committed by GitHub
parent 96701bcb74
commit 1dffcd2d09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ const ConnectorName = ({ type, connectors, onClickSetup }: Props) => {
platform && (
<div key={id} className={styles.platform}>
<ConnectorPlatformIcon platform={platform} />
{t(connectorPlatformLabel[platform])}
{t(`admin_console.${connectorPlatformLabel[platform]}`)}
</div>
)
)}