Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/social-lizards-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@asgardeo/react': patch
---

Add missing challenge token to the passkey registration
Original file line number Diff line number Diff line change
Expand Up @@ -797,6 +797,7 @@ const BaseSignUpContent: FC<BaseSignUpProps> = ({
executionId: passkeyState.executionId as string,
flowType: (currentFlow as any)?.flowType || 'REGISTRATION',
inputs,
...(challengeTokenRef.current ? {challengeToken: challengeTokenRef.current} : {}),
} as any;

const nextResponse: any = await onSubmit(payload);
Expand Down
Loading