Fix Redux Middleware types (#29800)
This commit is contained in:
parent
a3fe82e359
commit
07635228e2
2 changed files with 4 additions and 2 deletions
|
@ -30,7 +30,8 @@ function isActionWithmaybeAlertParams(
|
|||
return isAction(action);
|
||||
}
|
||||
|
||||
export const errorsMiddleware: Middleware<Record<string, never>, RootState> =
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types -- we need to use `{}` here to ensure the dispatch types can be merged
|
||||
export const errorsMiddleware: Middleware<{}, RootState> =
|
||||
({ dispatch }) =>
|
||||
(next) =>
|
||||
(action) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue