has anyone been able to make webext-redux work with rtk-query? When triggering a query from the popup, I see a network request resolve properly, and the store updated, but I also see this warning even though the middleware is added in the background script.
Warning: Middleware for RTK-Query API at reducerPath "xxx" has not been added to the store.
You must add the middleware for RTK-Query to function correctly!
Triggered in buildInitiate.ts, which I believe is because dispatch returns a Promise in webext-redux.
has anyone been able to make webext-redux work with rtk-query? When triggering a query from the popup, I see a network request resolve properly, and the store updated, but I also see this warning even though the middleware is added in the background script.
Triggered in buildInitiate.ts, which I believe is because
dispatch
returns aPromise
in webext-redux.