Skip to content

Commit b1f3464

Browse files
committed
Fix the CORS domain list
1 parent 4979af6 commit b1f3464

File tree

1 file changed

+1
-1
lines changed
  • python-backend/localmart_backend

1 file changed

+1
-1
lines changed

python-backend/localmart_backend/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class DeliveryQuoteRequest(BaseModel):
9696
allow_origins=[
9797
"http://localhost:3000", # Local development
9898
"https://localmart-frontend.fly.dev", # Staging
99-
"https://localmart-frontend-prod.fly.dev" # Production
99+
"https://localmart-frontend-prod.fly.dev", # Production
100100
"https://localmart.nyc" # Production
101101
],
102102
allow_credentials=True,

0 commit comments

Comments
 (0)