Skip to content

Commit

Permalink
fix: remove unnecessary console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
iykazrji committed Dec 18, 2024
1 parent d5ef62c commit 8519e6b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions examples/react-native-bare-example/src/screens/otp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,7 @@ export default function OTPAuthScreen() {
otpCode: code,
type: 'otp',
})
.then(res => {
console.log('res', res);
setUser(res);
})
.then(setUser)
.catch(console.error);
};

Expand Down

0 comments on commit 8519e6b

Please sign in to comment.