Surya

Results 5 comments of Surya

```tsx import baseService const sentryReduxEnhancer = Sentry.createReduxEnhancer({}); export const store = configureStore({ reducer: { // ... Many reducers settings: settingsReducers, [baseService.reducerPath]: baseService.reducer, }, middleware: (getDefaultMiddleware) => getDefaultMiddleware().concat(baseService.middleware), enhancers: (getDefaultEnhancers) =>...

Its the same behaviour, I tried to do that, and there was no change in behaviour. The createApi also has no customization apart from the baseQuery part where we added...

Hi, I created a POC of the behaviour in this Github repo: https://github.com/suryateja-7/redux-fetch-poc It clearly demonstrates the differences when using 1. RTK Query 2. Fetch API 3. RTKQ & Fetch...

Thanks @phryneas ! Disabling `autoBatch` indeed resolved the issue, and the `tick` worked as well. Could you help clarify the role of `autoBatch` in this specific scenario? I'd like to...

Yes, This did work out, I tried multiple variations and settled with using raf + tick together. Attaching my sample. Do let me know if you have any suggestions. ```ts...