Skip to content

Commit

Permalink
Merge pull request #121 from websiddu/patch-1
Browse files Browse the repository at this point in the history
Remove the warning for mobx internals.
  • Loading branch information
YousefED authored Oct 31, 2023
2 parents e9e7e4f + e011aed commit 7234609
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/doc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function getYjsByTypeDescription<T extends DocTypeDescription>(doc: Y.Doc, typeD
let description = typeDescription[p];
if (!description) {
// exclude expected Vue Reactive checks from logging a warning
if (p !== "__v_raw" && p !== "__v_isRef" && p !== "__v_isReadonly") {
if (p !== "__v_raw" && p !== "__v_isRef" && p !== "__v_isReadonly" && p != "$$typeof") {
console.warn("property not found on root doc", p);
}
return undefined;
Expand Down

0 comments on commit 7234609

Please sign in to comment.