From 13888db9b57313f4ff5cd87bfdbaf61b15ba42f7 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Wed, 29 Nov 2023 14:28:36 -0500 Subject: [PATCH] update URL to prod URL --- backend/access_token.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/access_token.py b/backend/access_token.py index bed7273..e61ef12 100644 --- a/backend/access_token.py +++ b/backend/access_token.py @@ -5,7 +5,9 @@ import httpx async def validate_access_token(access_code: str): async with httpx.AsyncClient() as client: - url = "http://localhost:8000/screenshot_to_code/validate_access_token" + url = ( + "https://backend.buildpicoapps.com/screenshot_to_code/validate_access_token" + ) data = json.dumps( { "access_code": access_code,