-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow passkey flow in demo app (#969)
* feat: allow passkey flow in demo app. handleAuthSuccess callback when complete * feat: in progress mint card wrapper, add isAuthComplete to useConfig * fix: switch to use useAuthenticate to determine stage instead of callback * feat: mdx useAuthentication update * fix: Update account-kit/react/src/components/auth/context.ts Co-authored-by: Michael Moldoveanu <[email protected]> * fix: bad casing for authsteptype * fix: remove stage from useAuthenticate * fix: bad corner radius on passkey modal, useAuthenticate docs * fix: remove unused auth step type --------- Co-authored-by: Michael Moldoveanu <[email protected]>
- Loading branch information
1 parent
42a2924
commit bacf9bd
Showing
5 changed files
with
43 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 20 additions & 9 deletions
29
examples/ui-demo/src/components/preview/AuthCardWrapper.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
examples/ui-demo/src/components/preview/MintDemoWrapper.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
export function MintDemoWrapper () { | ||
return ( | ||
<div> | ||
<div> | ||
{ | ||
// Iyk | ||
} | ||
</div> | ||
<div> | ||
{ | ||
// Rob | ||
} | ||
</div> | ||
</div> | ||
) | ||
} |