From 0440e15da5500fa193cd8b7ddc6d2bc12b34df03 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Thu, 27 Feb 2020 19:14:08 -0500 Subject: [PATCH] Typo fix "interal" -> "internal" --- views/login.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/login.handlebars b/views/login.handlebars index 20946156..628a2fa4 100644 --- a/views/login.handlebars +++ b/views/login.handlebars @@ -388,7 +388,7 @@ publicKeyCredentialRequestOptions = { challenge: hardwareKeyChallenge.challenge, allowCredentials: [], timeout: hardwareKeyChallenge.timeout } for (var i = 0; i < hardwareKeyChallenge.keyIds.length; i++) { publicKeyCredentialRequestOptions.allowCredentials.push( - { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc', 'interal'] } + { id: Uint8Array.from(atob(hardwareKeyChallenge.keyIds[i]), function (c) { return c.charCodeAt(0) }), type: 'public-key', transports: ['usb', 'ble', 'nfc', 'internal'] } ); }