Little fix on LoginConfigTotp.tsx

This commit is contained in:
Joseph Garrone 2023-10-26 12:50:48 +02:00
parent 2a13b314dc
commit e0a61b51cb

View File

@ -32,7 +32,7 @@ export default function LoginConfigTotp(props: PageProps<Extract<KcContext, { pa
<ul id="kc-totp-supported-apps"> <ul id="kc-totp-supported-apps">
{totp.supportedApplications.map(app => ( {totp.supportedApplications.map(app => (
<li>{msgStr(app as MessageKey, app)}</li> <li>{msg(app as MessageKey)}</li>
))} ))}
</ul> </ul>
</li> </li>