Nagy Máté
Nagy Máté
In 2017 this problem is still not addressed.
Would like to add that this also resets the tab titles:  
Digging around looks like this is an issue in chrome-launcher + Node 17+ A [fix for this has been merged](https://github.com/GoogleChrome/chrome-launcher/pull/253), so fixing bundle-wizard should be updating to chrome-launcher 0.14.2+ and...
I've run into this same issue. In our case it was caused by a typo when installing a package causing this to be in the dependencies array: ``` "toastworkspace:": "link:@repo/toastworkspace:",...
RTK by default uses Immer's [autoFreeze](https://immerjs.github.io/immer/freezing/) option, which prevents mistakes by freezing your objects which come out of the redux state, preventing accidental mutations in one component to affect the...
For anyone stumbling on this, I've realized you can manually implement the autofreeze behaviour centrally without patching reselect by taking one of the existing memoizer functions, and calling deepFreeze on...