From b6ec2d510e6b8a044a14caa9f848f72b3a152eaa Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 02:33:02 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/server/src/db/schema/application.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/server/src/db/schema/application.ts b/packages/server/src/db/schema/application.ts index cf317984d..c1eb8b65c 100644 --- a/packages/server/src/db/schema/application.ts +++ b/packages/server/src/db/schema/application.ts @@ -373,7 +373,11 @@ const createSchema = createInsertSchema(applications, { endpointSpecSwarm: EndpointSpecSwarmSchema.nullable(), ulimitsSwarm: UlimitsSwarmSchema.nullable(), enableSubmodules: z.boolean().optional(), - icon: z.string().max(2 * 1024 * 1024, "Icon must be less than 2MB").nullable().optional(), + icon: z + .string() + .max(2 * 1024 * 1024, "Icon must be less than 2MB") + .nullable() + .optional(), }); export const apiCreateApplication = createSchema.pick({