diff --git a/packages/server/src/db/schema/mount.ts b/packages/server/src/db/schema/mount.ts index 6acc859d2..504e6d2e6 100644 --- a/packages/server/src/db/schema/mount.ts +++ b/packages/server/src/db/schema/mount.ts @@ -150,7 +150,10 @@ export const apiRemoveMount = createSchema .required(); export const apiFindMountByApplicationId = z.object({ - serviceType: z.string().min(1).transform((val) => val as ServiceType), + serviceType: z + .string() + .min(1) + .transform((val) => val as ServiceType), serviceId: z.string().min(1), });