Mark Erikson

Results 1264 comments of Mark Erikson

`extra` comes from the global store config for the `thunk` middleware, so it's not something you'd be able to pass in at a hook call site. You'd need to pass...

@kristiandupont that's very surprising - we made _no_ changes to any of this behavior in v2

Repeating the request: could someone please give us a minimal repro of this issue that we can test against? Related: is this issue solely about cases where you're passing in...

@maxkostow That example appears to be actual intended behavior, and I'm not sure what you're expecting it to do: ```tsx function App() { const { refetch } = useGetPostsQuery(skipToken); return...

@sanduluca your case is happening because `refetch` currently throws that error any time `promiseRef.current` is `undefined`. That's true initially when we don't have an active query, but it also gets...

We discussed this internally, and our conclusion is that both of these case are indeed errors. If you try to refetch while `skipToken` is active, that _is_ the current arg,...

@sanduluca : I get that you're frustrated, but that is _not_ an acceptable way to interact here. Lenz specifically explained the reasons why we concluded we can't make a change...

@sanduluca Ohhhhhhh, okay, got it - it was a copy-paste error that included _ChatGPT_ saying "here's the corrected version of [your comment]", _not_ you trying to say "Lenz, I've rewritten...

@maxkostow : > In my opinion it would be more ergonomic for refetch to return undefined in the case where there is nothing to refetch Agreed, and that's what I...

Hmm. That's extremely odd, given that we don't even call the old `ReactDOM.render()` method: ```ts worker.start({ quiet: true }).then(() => ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( , ), ) ```