From b1f34640cecd7ad0a8df7c3204c715baca8dcdb8 Mon Sep 17 00:00:00 2001 From: Peter Valdez Date: Sun, 16 Feb 2025 23:34:24 -0500 Subject: [PATCH] Fix the CORS domain list --- python-backend/localmart_backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-backend/localmart_backend/main.py b/python-backend/localmart_backend/main.py index 6c2fffe..1507253 100644 --- a/python-backend/localmart_backend/main.py +++ b/python-backend/localmart_backend/main.py @@ -96,7 +96,7 @@ class DeliveryQuoteRequest(BaseModel): allow_origins=[ "http://localhost:3000", # Local development "https://localmart-frontend.fly.dev", # Staging - "https://localmart-frontend-prod.fly.dev" # Production + "https://localmart-frontend-prod.fly.dev", # Production "https://localmart.nyc" # Production ], allow_credentials=True,