diff --git a/packages/redux-devtools-remote/src/devTools.ts b/packages/redux-devtools-remote/src/devTools.ts index f6adec93..ef6d9154 100644 --- a/packages/redux-devtools-remote/src/devTools.ts +++ b/packages/redux-devtools-remote/src/devTools.ts @@ -276,6 +276,7 @@ class DevToolsEnhancer> { !this.actionSanitizer ? action : this.actionSanitizer( + // eslint-disable-next-line @typescript-eslint/no-unsafe-argument (action as PerformAction).action, nextActionId! - 1 ) @@ -549,6 +550,7 @@ class DevToolsEnhancer> { const nextActionId = liftedState.nextActionId; const liftedAction = liftedState.actionsById[nextActionId - 1]; if (isFiltered(liftedAction.action, this.filters)) return; + // eslint-disable-next-line @typescript-eslint/no-unsafe-argument this.relay('ACTION', state, liftedAction, nextActionId); if (!this.isExcess && maxAge) this.isExcess = liftedState.stagedActionIds.length >= maxAge; @@ -597,6 +599,7 @@ class DevToolsEnhancer> { this.store.subscribe(() => { if (this.isMonitored) this.handleChange( + // eslint-disable-next-line @typescript-eslint/no-unsafe-argument this.store.getState(), this.getLiftedStateRaw(), maxAge