dauth-context-react 6.6.2 → 6.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/reducer/dauth.actions.ts +3 -1
package/dist/index.js
CHANGED
|
@@ -478,7 +478,9 @@ async function registerPasskeyAction(ctx, name) {
|
|
|
478
478
|
onError(new Error("Failed to start passkey registration"));
|
|
479
479
|
return null;
|
|
480
480
|
}
|
|
481
|
-
const credential = await createPasskeyCredential(
|
|
481
|
+
const credential = await createPasskeyCredential(
|
|
482
|
+
startResult.data.options
|
|
483
|
+
);
|
|
482
484
|
const finishResult = await finishPasskeyRegistrationAPI(authProxyPath, {
|
|
483
485
|
credential,
|
|
484
486
|
name
|