We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da175a commit 7c152edCopy full SHA for 7c152ed
packages/compass-crud/src/components/document.tsx
@@ -30,7 +30,7 @@ const Document = (props: DocumentProps) => {
30
if (typeof _doc?.isRoot === 'function' && _doc?.isRoot()) {
31
return _doc as HadronDocument;
32
}
33
- return new HadronDocument(_doc as unknown);
+ return new HadronDocument(_doc as Record<string, unknown>);
34
}, [_doc]);
35
36
const changeQuery = useChangeQueryBarQuery();
0 commit comments