Skip to content

Commit

Permalink
fix jsdocs types for auth.signUp options
Browse files Browse the repository at this point in the history
  • Loading branch information
ug.rp committed Apr 27, 2024
1 parent 0be9c66 commit 9720fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {supabase} from './main.js'
// Three wrappers around the auth methods from Supabase.

/**
* @param {{email: string, password: string}} param0
* @param {{email: string, password: string, options: object}} param0
*/
export const signUp = async ({email, password, options = {}}) => {
return supabase.auth.signUp({email, password, options})
Expand Down

0 comments on commit 9720fed

Please sign in to comment.