From 88b68a9df08793635b59d026b1bbfda496e16ee8 Mon Sep 17 00:00:00 2001 From: gorkem-bwl Date: Mon, 11 Aug 2025 17:39:08 -0400 Subject: [PATCH] fix: apply prettier formatting to app.js Fixed formatting issues to pass CI/CD checks --- server/src/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/app.js b/server/src/app.js index 034ff9d29..556b306fd 100644 --- a/server/src/app.js +++ b/server/src/app.js @@ -31,11 +31,11 @@ export const createApp = ({ services, controllers, envSettings, frontendPath, op }) ); app.use(express.json()); - + // Apply input sanitization middleware app.use(sanitizeBody()); app.use(sanitizeQuery()); - + app.use( helmet({ hsts: false,