diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-25 11:41:23 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-25 11:41:23 -0700 |
commit | 8e55856d806dc9acb05a313ee42363950f46d7cd (patch) | |
tree | f48375f5a0337528d97e65e07df1eb74601bfa7b /packages/browser/src/methods | |
parent | 90324f77c56be97776fab6742178e800a5187c22 (diff) |
Run ESLint over everything
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r-- | packages/browser/src/methods/startAssertion.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/browser/src/methods/startAssertion.ts b/packages/browser/src/methods/startAssertion.ts index 36c7194..f504f19 100644 --- a/packages/browser/src/methods/startAssertion.ts +++ b/packages/browser/src/methods/startAssertion.ts @@ -28,7 +28,7 @@ export default async function startAssertion( allowCredentials: requestOptionsJSON.publicKey.allowCredentials.map(cred => { // Make sure the credential ID length is a multiple of 4 const padLength = 4 - (cred.id.length % 4); - let id = cred.id.padEnd(cred.id.length + padLength, '='); + const id = cred.id.padEnd(cred.id.length + padLength, '='); return { ...cred, |