Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 1, 2023
1 parent 66759da commit 72ee18d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gotrue/_async/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ def exchange_code_for_session(auth_code: str):
"POST",
"token?grant_type=pkce",
body={
"auth_code": email,
"auth_code": auth_code,
"code_verifier": code_verifier,
},
redirect_to=redirect_to,
Expand Down
2 changes: 1 addition & 1 deletion gotrue/_sync/gotrue_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def exchange_code_for_session(auth_code: str):
"POST",
"token?grant_type=pkce",
body={
"auth_code": email,
"auth_code": auth_code,
"code_verifier": code_verifier,
},
redirect_to=redirect_to,
Expand Down

0 comments on commit 72ee18d

Please sign in to comment.