Skip to content

Commit

Permalink
refactor(author): fix all-work route sending
Browse files Browse the repository at this point in the history
  • Loading branch information
mlbrgl committed May 24, 2024
1 parent 25fddcb commit f3aa421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adminSiteServer/apiRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2651,7 +2651,7 @@ getRouteWithROTransaction(apiRouter, "/all-work", async (req, res, trx) => {
}

res.type("text/plain")
res.send([...generateAllWorkArchieMl()].join(""))
return [...generateAllWorkArchieMl()].join("")
})

export { apiRouter }

0 comments on commit f3aa421

Please sign in to comment.