FastAPI - Middleware and Hooks
Identify the error in this FastAPI CORS middleware setup:
app.add_middleware(
CORSMiddleware,
allow_origins="*",
allow_methods=["GET", "POST"],
allow_headers=["*"]
)