File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
invokeai/frontend/web/src
features/controlLayers/store Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -127,8 +127,6 @@ export const buildUseDisclosure = (defaultIsOpen: boolean): [() => UseDisclosure
127
127
*
128
128
* Hook to manage a boolean state. Use this for a local boolean state.
129
129
* @param defaultIsOpen Initial state of the disclosure
130
- *
131
- * @knipignore
132
130
*/
133
131
export const useDisclosure = ( defaultIsOpen : boolean ) : UseDisclosure => {
134
132
const [ isOpen , set ] = useState ( defaultIsOpen ) ;
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ const zSAMPoint = z.object({
131
131
y : z . number ( ) . int ( ) . gte ( 0 ) ,
132
132
label : zSAMPointLabel ,
133
133
} ) ;
134
- export type SAMPoint = z . infer < typeof zSAMPoint > ;
134
+ type SAMPoint = z . infer < typeof zSAMPoint > ;
135
135
export type SAMPointWithId = SAMPoint & { id : string } ;
136
136
137
137
const zRect = z . object ( {
You can’t perform that action at this time.
0 commit comments