Nick: revert trailing comma

This commit is contained in:
Nicolas
2024-12-11 19:51:08 -03:00
parent 52f2e733e2
commit 8a1c404918
121 changed files with 1965 additions and 1952 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ configDotenv();
export async function crawlCancelController(
req: RequestWithAuth<{ jobId: string }>,
res: Response
res: Response,
) {
try {
const useDbAuthentication = process.env.USE_DB_AUTHENTICATION === "true";
@@ -43,7 +43,7 @@ export async function crawlCancelController(
}
res.json({
status: "cancelled"
status: "cancelled",
});
} catch (error) {
Sentry.captureException(error);