You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently ref() marks an object as a reference by adding a symbol property to it, but this fails for objects are not extensible. The workaround is to wrap the desired ref object in another plain object, like this:
Currently
ref()
marks an object as a reference by adding a symbol property to it, but this fails for objects are not extensible. The workaround is to wrap the desired ref object in another plain object, like this:But this is not ideal. Keck should probably just use a WeakSet to store ref objects instead of a symbol property.
The text was updated successfully, but these errors were encountered: