From a922408e49192813519514729326706e570a85f7 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Sat, 1 Aug 2026 21:23:52 +0200 Subject: [PATCH] fix: add Origin header to login test in deploy.py --- scripts/deploy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deploy.py b/scripts/deploy.py index bf4f713..9b9e65c 100644 --- a/scripts/deploy.py +++ b/scripts/deploy.py @@ -371,6 +371,7 @@ def verify_login() -> StepResult: resp = httpx.post( url, json={"email": LOGIN_EMAIL, "password": LOGIN_PASSWORD}, + headers={"Origin": APP_DOMAIN}, timeout=30, follow_redirects=True, )