No need to sort review summary

This commit is contained in:
Nicolas Mowen 2025-11-06 06:00:53 -07:00
parent d5ab22de3d
commit 86835df072

View File

@ -458,7 +458,7 @@ async def review_summary(
else:
data[day_key] = e
return JSONResponse(content=sorted(data.keys()))
return JSONResponse(content=data)
@router.post("/reviews/viewed", response_model=GenericResponse)