Skip to content

Commit 85fc861

Browse files
chore(ui): lint
1 parent 458cbfd commit 85fc861

File tree

1 file changed

+0
-14
lines changed
  • invokeai/frontend/web/src/features/ui/store

1 file changed

+0
-14
lines changed

invokeai/frontend/web/src/features/ui/store/uiTypes.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,6 @@ const zPartialDimensions = z.object({
1111
height: z.number().optional(),
1212
});
1313

14-
const zDockviewPanelState = z.object({
15-
id: z.string(),
16-
type: z.literal('dockview-panel'),
17-
isActive: z.boolean(),
18-
});
19-
export type StoredDockviewPanelState = z.infer<typeof zDockviewPanelState>;
20-
21-
const zGridviewPanelState = z.object({
22-
id: z.string(),
23-
type: z.literal('gridview-panel'),
24-
dimensions: zPartialDimensions,
25-
});
26-
export type StoredGridviewPanelState = z.infer<typeof zGridviewPanelState>;
27-
2814
const zSerializable = z.any().refine(isPlainObject);
2915
export type Serializable = z.infer<typeof zSerializable>;
3016

0 commit comments

Comments
 (0)