From f6e2c033ba853de1677e41f4d32e1728f1341e9b Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 04:18:44 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/server/api/routers/project.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/dokploy/server/api/routers/project.ts b/apps/dokploy/server/api/routers/project.ts index 7383daeb4..5095c43f1 100644 --- a/apps/dokploy/server/api/routers/project.ts +++ b/apps/dokploy/server/api/routers/project.ts @@ -488,8 +488,7 @@ export const projectRouter = createTRPCRouter({ ), homeStats: protectedProcedure.query(async ({ ctx }) => { - const isPrivileged = - ctx.user.role === "owner" || ctx.user.role === "admin"; + const isPrivileged = ctx.user.role === "owner" || ctx.user.role === "admin"; let accessedProjects: string[] = []; let accessedEnvironments: string[] = [];