Created
September 4, 2021 15:23
-
-
Save adityajoshi12/8bad475dfe066c97526bfbd38985e30b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| async signUp() { | |
| try { | |
| let signupRes = await this.supabase.signUp(this.signUpForm.value.email, this.signUpForm.value.password); | |
| let profile = await this.supabase.createProfile(signupRes.user.id, this.signUpForm.value.name); | |
| } catch (error) { | |
| console.error(error); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment