Variables fetched from MobX store become Proxy
objects in the console.
How can we log the actual variable?
Variables fetched from MobX store become Proxy
objects in the console.
How can we log the actual variable?
Im using object destructuring.
Mobx docs.
Example:
console.log({ ...StoreName.objectYouWantToLog });
For nested objects, you can also use JSON.parse(JSON.stringify(storeName))