Skip to content

Commit e6ab6e0

Browse files
psychedelicioushipsterusername
authored andcommitted
chore(ui): lint
1 parent 66d9c7c commit e6ab6e0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

invokeai/frontend/web/src/common/hooks/useBoolean.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ export const buildUseDisclosure = (defaultIsOpen: boolean): [() => UseDisclosure
127127
*
128128
* Hook to manage a boolean state. Use this for a local boolean state.
129129
* @param defaultIsOpen Initial state of the disclosure
130-
*
131-
* @knipignore
132130
*/
133131
export const useDisclosure = (defaultIsOpen: boolean): UseDisclosure => {
134132
const [isOpen, set] = useState(defaultIsOpen);

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const zSAMPoint = z.object({
131131
y: z.number().int().gte(0),
132132
label: zSAMPointLabel,
133133
});
134-
export type SAMPoint = z.infer<typeof zSAMPoint>;
134+
type SAMPoint = z.infer<typeof zSAMPoint>;
135135
export type SAMPointWithId = SAMPoint & { id: string };
136136

137137
const zRect = z.object({

0 commit comments

Comments
 (0)