fix: swap _page args in review endpoint (body was passed as title)
All checks were successful
Deploy / deploy (push) Successful in 11s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-20 16:50:02 +01:00
parent 4317b5e453
commit fbc8bce972

View File

@@ -919,7 +919,7 @@ function escHtml(s) {{
}} }}
</script>""" </script>"""
return HTMLResponse(_page(body, "Review Differences")) return HTMLResponse(_page("Review Differences", body))
@app.get("/review/content") @app.get("/review/content")