We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Had to change the way it was imported - use dereferencing
import { auth, storage } from '../../helpers/nhostSdk';
when you use the auth library, you'll need to pass an object with params instead of email and password separately
await auth.login({email, password}); // instead of await auth.login(email, password); // same deal for auth.register()
I've got my starter up at this GitHub repo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Had to change the way it was imported - use dereferencing
when you use the auth library, you'll need to pass an object with params instead of email and password separately
I've got my starter up at this GitHub repo
The text was updated successfully, but these errors were encountered: