Skip to content

Commit 73a72cc

Browse files
committed
Fix unneded use_deploy_token=True in _send_waitlist_form
1 parent cd39383 commit 73a72cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fastapi_cloud_cli/commands/deploy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ def _send_waitlist_form(
564564
toolkit: RichToolkit,
565565
) -> None:
566566
with toolkit.progress("Sending your request...") as progress:
567-
with APIClient(use_deploy_token=True) as client:
567+
with APIClient() as client:
568568
with handle_http_errors(progress):
569569
response = client.post("/users/waiting-list", json=result.model_dump())
570570

0 commit comments

Comments
 (0)