You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
store's type is S which is the store's state, but it should use Rodux.Store.
I'm not sure how to fix this myself though. I tried by adding A extends Action = AnyAction as a type parameter and using that in store: Rodux.Store<S, A> and (action: A) but I came across issues with Rodux.loggerMiddleware not being usable due to Rodux.AnyAction incompatibility with my store's actions (I tried to intersect my store's action types with Rodux.AnyAction and it didn't fix anything).
The text was updated successfully, but these errors were encountered:
store
's type is S which is the store's state, but it should use Rodux.Store.I'm not sure how to fix this myself though. I tried by adding
A extends Action = AnyAction
as a type parameter and using that instore: Rodux.Store<S, A>
and(action: A)
but I came across issues with Rodux.loggerMiddleware not being usable due to Rodux.AnyAction incompatibility with my store's actions (I tried to intersect my store's action types with Rodux.AnyAction and it didn't fix anything).The text was updated successfully, but these errors were encountered: