chore: configura o prettier para formatacao do codigo

This commit is contained in:
2026-04-29 20:03:32 -05:00
parent 6c4a7c5116
commit c323d4d6af
15 changed files with 316 additions and 161 deletions

View File

@@ -37,6 +37,8 @@ export function getRouteRequirement(method: string, path: string): AuthRouteRequ
const normalizedPath = normalizePath(path)
return (
PROTECTED_ROUTES.find((route) => route.method === normalizedMethod && route.path === normalizedPath) ?? null
PROTECTED_ROUTES.find(
(route) => route.method === normalizedMethod && route.path === normalizedPath
) ?? null
)
}