diff --git a/backend/fluksio/api/routes/dashboards.py b/backend/fluksio/api/routes/dashboards.py index 142e912..b4f9a2e 100644 --- a/backend/fluksio/api/routes/dashboards.py +++ b/backend/fluksio/api/routes/dashboards.py @@ -125,8 +125,6 @@ async def save_dashboard( raise HTTPException(status_code=422, detail="The name in the body must match") try: saved = await run_in_threadpool(store.write_draft, body, body.version) - except DashboardNotFound: - raise HTTPException(status_code=404, detail=f"No dashboard named '{name}'") except StaleVersion as exc: raise HTTPException( status_code=409,