Typo fix "interal" -> "internal"

Ryan Blenis committed Feb 27, 2020 at 19:14 UTC 61cc4df370e817d5de6b40c46bdf3f86ab2b1040
1 file changed +1 -1
views/login.handlebars
+1 -1
@@ -388,7 +388,7 @@
388 publicKeyCredentialRequestOptions = { challenge: hardwareKeyChallenge.challenge, allowCredentials: [], timeout: hardwareKeyChallenge.timeout }
389 for (var i = 0; i < hardwareKeyChallenge.keyIds.length; i++) {
390 publicKeyCredentialRequestOptions.allowCredentials.push(
391 - { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc', 'interal'] }
391 + { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc', 'internal'] }
392 );
393 }
394