From a6fbbdf2a8bccbc5a837882ed26618ea8a0ab468 Mon Sep 17 00:00:00 2001 From: tonProtofy Date: Wed, 11 Dec 2024 18:12:21 +0100 Subject: [PATCH] Fix EditableObject types export --- packages/protolib/src/components/EditableObject/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/protolib/src/components/EditableObject/index.tsx b/packages/protolib/src/components/EditableObject/index.tsx index 62a02552d..60029eca7 100644 --- a/packages/protolib/src/components/EditableObject/index.tsx +++ b/packages/protolib/src/components/EditableObject/index.tsx @@ -16,7 +16,7 @@ import {useTint} from '../../lib/Tints' import { ItemMenu } from "../ItemMenu"; import { getElement } from "./Element"; import { EditableObjectProps } from "./types"; -export { EditableObjectProps } from "./types"; +export * from "./types"; export const OpenedSectionsContext = createContext<[string[], Function]>([[], (openedSections) => { }]);