mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
* Some cleaning * Fix seeds * Fix all sign in, sign up flow and apiKey optimistic rendering * Fix
9 lines
301 B
TypeScript
9 lines
301 B
TypeScript
import { useFindManyObjectMetadataItems } from '@/object-metadata/hooks/useFindManyObjectMetadataItems';
|
|
|
|
export const ObjectMetadataItemsProvider = ({
|
|
children,
|
|
}: React.PropsWithChildren) => {
|
|
const { loading } = useFindManyObjectMetadataItems();
|
|
|
|
return loading ? <></> : <>{children}</>;
|
|
};
|