Skip to content

Commit

Permalink
replace passkeys with webauthn
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1995 committed Mar 7, 2024
1 parent e63fa62 commit 6cbbcdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handlers/PasskeysHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { fetchDataFromBroadcastServer } from "../utils/sessionHelper";
import AbstractLoginHandler from "./AbstractLoginHandler";
import { Auth0ClientOptions, LoginWindowResponse, PasskeySessionData, TorusGenericObject, TorusVerifierResponse } from "./interfaces";

export default class WebAuthnHandler extends AbstractLoginHandler {
export default class PasskeysHandler extends AbstractLoginHandler {
constructor(
readonly clientId: string,
readonly verifier: string,
Expand Down Expand Up @@ -68,7 +68,7 @@ export default class WebAuthnHandler extends AbstractLoginHandler {

return {
email: "",
name: "WebAuthn Login",
name: "Passkeys Login",
profileImage: "",
verifier: this.verifier,
verifierId,
Expand Down

0 comments on commit 6cbbcdb

Please sign in to comment.