diff --git a/web/src/app/(app)/api/[[...routes]]/route.ts b/web/src/app/(app)/api/[[...routes]]/route.ts index 008fa9f..6d92a34 100644 --- a/web/src/app/(app)/api/[[...routes]]/route.ts +++ b/web/src/app/(app)/api/[[...routes]]/route.ts @@ -34,7 +34,7 @@ app.use("/run", async (c, next) => { return checkAuth(c, next); }); -app.use("/upload", async (c, next) => { +app.use("/upload-url", async (c, next) => { return checkAuth(c, next); });