fix: resolve SSE CORS issues and fix date filter format mismatch

This commit is contained in:
2026-04-08 21:15:26 -04:00
parent ec503b9ec6
commit 532a4e2dc5
2 changed files with 2 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ app: FastAPI = FastAPI(
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)