fix(ui): move tcd scheduler to current zod schemas

It was in the v2 schemas which should be immutable and only used for migrations
This commit is contained in:
psychedelicious 2024-04-03 17:08:02 +11:00
parent 0259114d9c
commit 1d45ef529b
2 changed files with 1 additions and 1 deletions
invokeai/frontend/web/src/features/nodes/types

@ -49,6 +49,7 @@ export const zSchedulerField = z.enum([
'euler_a',
'kdpm_2_a',
'lcm',
'tcd',
]);
export type SchedulerField = z.infer<typeof zSchedulerField>;
// #endregion

@ -40,7 +40,6 @@ export const zSchedulerField = z.enum([
'euler_a',
'kdpm_2_a',
'lcm',
'tcd',
]);
// #endregion