Skip to content

Commit

Permalink
library renamed browserSupportsWebAuthn
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbitronics committed Aug 2, 2024
1 parent bed5a08 commit 3f13b92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/2sv/key/Insert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@

<script>
import ProfileWizard from '@/profile/ProfileWizard'
import { browserSupportsWebauthn } from '@simplewebauthn/browser'
import { browserSupportsWebAuthn } from '@simplewebauthn/browser'
import { newKeyName, mfa } from '@/global/mfa'
export default {
components: {
ProfileWizard,
},
data: () => ({
isSupported: browserSupportsWebauthn(),
isSupported: browserSupportsWebAuthn(),
showLabelInput: false,
input: '',
newKeyName,
Expand Down
4 changes: 2 additions & 2 deletions src/2sv/key/Touch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<script>
import ProfileWizard from '@/profile/ProfileWizard'
import { browserSupportsWebauthn, startRegistration } from '@simplewebauthn/browser'
import { browserSupportsWebAuthn, startRegistration } from '@simplewebauthn/browser'
import { add, verifyWebauthn, newKeyName } from '@/global/mfa'
let absTimeout
Expand All @@ -67,7 +67,7 @@ export default {
newSecurityKey: {},
touched: false,
error: false,
isSupported: browserSupportsWebauthn(),
isSupported: browserSupportsWebAuthn(),
}),
async created() {
this.create()
Expand Down

0 comments on commit 3f13b92

Please sign in to comment.