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 3281854 commit 7aa73fdCopy full SHA for 7aa73fd
packages/frameworks-sveltekit/src/lib/webauthn.ts
@@ -24,7 +24,7 @@ async function webAuthnOptions(
24
providerID: ProviderId,
25
options?: Omit<SignInOptions, "redirect">
26
) {
27
- const baseUrl = base ?? ""
+ const baseUrl = `${base}/auth`
28
29
// @ts-expect-error
30
const params = new URLSearchParams(options)
@@ -72,7 +72,7 @@ export async function signIn<Redirect extends boolean = true>(
72
...signInParams
73
} = rest
74
75
76
77
if (!provider || provider !== "webauthn") {
78
// TODO: Add docs link with explanation
0 commit comments