There was an error while loading. Please reload this page.
1 parent 4da3c46 commit d6885c3Copy full SHA for d6885c3
1 file changed
packages/server/src/db/schema/mount.ts
@@ -150,7 +150,10 @@ export const apiRemoveMount = createSchema
150
.required();
151
152
export const apiFindMountByApplicationId = z.object({
153
- serviceType: z.string().min(1).transform((val) => val as ServiceType),
+ serviceType: z
154
+ .string()
155
+ .min(1)
156
+ .transform((val) => val as ServiceType),
157
serviceId: z.string().min(1),
158
});
159
0 commit comments