Skip to content

Commit 7234609

Browse files
authored
Merge pull request #121 from websiddu/patch-1
Remove the warning for mobx internals.
2 parents e9e7e4f + e011aed commit 7234609

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/doc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function getYjsByTypeDescription<T extends DocTypeDescription>(doc: Y.Doc, typeD
4444
let description = typeDescription[p];
4545
if (!description) {
4646
// exclude expected Vue Reactive checks from logging a warning
47-
if (p !== "__v_raw" && p !== "__v_isRef" && p !== "__v_isReadonly") {
47+
if (p !== "__v_raw" && p !== "__v_isRef" && p !== "__v_isReadonly" && p != "$$typeof") {
4848
console.warn("property not found on root doc", p);
4949
}
5050
return undefined;

0 commit comments

Comments
 (0)