Skip to content

Commit 57ce2b8

Browse files
chore(ui): lint
1 parent 6b810cb commit 57ce2b8

File tree

1 file changed

+0
-3
lines changed
  • invokeai/frontend/web/src/features/controlLayers/store

1 file changed

+0
-3
lines changed

invokeai/frontend/web/src/features/controlLayers/store/types.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { deepClone } from 'common/util/deepClone';
22
import type { CanvasEntityAdapter } from 'features/controlLayers/konva/CanvasEntity/types';
3-
import type { ProgressImage } from 'features/nodes/types/common';
43
import { zMainModelBase, zModelIdentifierField } from 'features/nodes/types/common';
54
import {
65
zParameterCanvasCoherenceMode,
@@ -414,8 +413,6 @@ export const zLoRA = z.object({
414413
});
415414
export type LoRA = z.infer<typeof zLoRA>;
416415

417-
export type EphemeralProgressImage = { sessionId: string; image: ProgressImage };
418-
419416
export const zAspectRatioID = z.enum(['Free', '21:9', '16:9', '3:2', '4:3', '1:1', '3:4', '2:3', '9:16', '9:21']);
420417
export type AspectRatioID = z.infer<typeof zAspectRatioID>;
421418
export const isAspectRatioID = (v: unknown): v is AspectRatioID => zAspectRatioID.safeParse(v).success;

0 commit comments

Comments
 (0)