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...
Hello! Thanks a lot for all the improvements you've made to the type performance so far. I've run into the same issue in a large proprietary RTK project. I have...
Thank you for the info. For reference TypeSlayer was the tool that prompted my investigation in the first place, and I used it while trying to fix the issue. It...
> What does large mean? We are using roughly 200 generated endpoints with RTK query and it mostly holds up. This is without tsgo. We currently have ~11 injectApi calls...