fix: add router back

This commit is contained in:
phact 2025-10-07 11:07:12 -04:00
parent c6907e104a
commit b8e8440397

View file

@ -51,7 +51,7 @@ function AdminPage() {
const formData = new FormData()
formData.append("file", selectedFile)
const response = await fetch("/api/upload", {
const response = await fetch("/api/router/upload_ingest", {
method: "POST",
body: formData,
})