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({