Skip to content

Commit

Permalink
feat: update magic link example to use use the correct email mode
Browse files Browse the repository at this point in the history
  • Loading branch information
iykazrji committed Dec 20, 2024
1 parent 99a2576 commit a1bfbad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion examples/react-native-expo-example/app/(tabs)/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ export default function MagicLinkAuthScreen() {
onPress={() => {
setAuthRequestSent(true);
signer
.authenticate({ email, type: "email" })
.authenticate({
email,
type: "email",
emailMode: "magicLink",
})
.catch(console.error);
}}
>
Expand Down

0 comments on commit a1bfbad

Please sign in to comment.