We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3826230 commit 3eb3f40Copy full SHA for 3eb3f40
lib/ts/recipe/webauthn/recipe.tsx
@@ -35,6 +35,7 @@ import type {
35
RecipeInitResult,
36
} from "../../types";
37
import type RecipeModule from "../recipeModule";
38
+import { FactorIds } from "../multifactorauth";
39
40
export default class Webauthn extends AuthRecipe<
41
GetRedirectionURLContext,
@@ -46,7 +47,7 @@ export default class Webauthn extends AuthRecipe<
46
47
static RECIPE_ID = "webauthn";
48
49
recipeID = Webauthn.RECIPE_ID;
- firstFactorIds = [];
50
+ firstFactorIds = [FactorIds.WEBAUTHN];
51
52
constructor(
53
config: NormalisedConfigWithAppInfoAndRecipeID<NormalisedConfig>,
0 commit comments