🐛 Fix issue with wrong type for wrapper content

This commit is contained in:
Meierschlumpf
2022-12-22 16:48:53 +01:00
parent 93fc011879
commit b23f464140

View File

@@ -14,7 +14,6 @@ interface WrapperContentProps {
wrapper: RefObject<HTMLDivElement>; wrapper: RefObject<HTMLDivElement>;
items: MutableRefObject<Record<string, RefObject<HTMLDivElement>>>; items: MutableRefObject<Record<string, RefObject<HTMLDivElement>>>;
gridstack: MutableRefObject<GridStack | undefined>; gridstack: MutableRefObject<GridStack | undefined>;
updateGridstackRef: MutableRefObject<(() => void) | undefined>;
}; };
} }