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.
2 parents e9e7e4f + e011aed commit 7234609Copy full SHA for 7234609
packages/core/src/doc.ts
@@ -44,7 +44,7 @@ function getYjsByTypeDescription<T extends DocTypeDescription>(doc: Y.Doc, typeD
44
let description = typeDescription[p];
45
if (!description) {
46
// exclude expected Vue Reactive checks from logging a warning
47
- if (p !== "__v_raw" && p !== "__v_isRef" && p !== "__v_isReadonly") {
+ if (p !== "__v_raw" && p !== "__v_isRef" && p !== "__v_isReadonly" && p != "$$typeof") {
48
console.warn("property not found on root doc", p);
49
}
50
return undefined;
0 commit comments