From 9e6765d83c318bf92055daac5639e1f45d838762 Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Tue, 29 Jul 2025 14:51:55 -0700 Subject: [PATCH] fix --- apps/server/src/common/helpers/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/common/helpers/utils.ts b/apps/server/src/common/helpers/utils.ts index 06a23704..0bc7d708 100644 --- a/apps/server/src/common/helpers/utils.ts +++ b/apps/server/src/common/helpers/utils.ts @@ -79,6 +79,7 @@ export function sanitizeFileName(fileName: string): string { export function removeAccent(str: string): string { if (!str) return str; return str.normalize('NFD').replace(/[\u0300-\u036f]/g, ''); +} export function extractBearerTokenFromHeader( request: FastifyRequest,