Skip to content

Commit

Permalink
update peoperty name for should_create_user
Browse files Browse the repository at this point in the history
  • Loading branch information
silentworks committed Jun 23, 2024
1 parent 00a04c6 commit 4bc09ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion supabase_auth/_async/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ async def sign_in_with_otp(
phone = credentials.get("phone")
options = credentials.get("options", {})
email_redirect_to = options.get("email_redirect_to")
should_create_user = options.get("create_user", True)
should_create_user = options.get("should_create_user", True)
data = options.get("data")
channel = options.get("channel", "sms")
captcha_token = options.get("captcha_token")
Expand Down
2 changes: 1 addition & 1 deletion supabase_auth/_sync/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ def sign_in_with_otp(
phone = credentials.get("phone")
options = credentials.get("options", {})
email_redirect_to = options.get("email_redirect_to")
should_create_user = options.get("create_user", True)
should_create_user = options.get("should_create_user", True)
data = options.get("data")
channel = options.get("channel", "sms")
captcha_token = options.get("captcha_token")
Expand Down

0 comments on commit 4bc09ef

Please sign in to comment.