Daniel Heim

Results 2 comments of Daniel Heim

You've probably solved this, but try: `~ return {x}` instead of just `{x}` The former returns the value to caller. While the later, logs the value, as if it's a...

I know its been a while, but `isSignInWithEmailLink` isn't a Promise. So awaiting it will return a truthy value. Try removing the await: `const isSigninLink = auth().isSignInWithEmailLink(link);`