From 6a3598b5cd111b366be5fa4885ded1541094a165 Mon Sep 17 00:00:00 2001 From: EskiMojo14 Date: Tue, 7 May 2024 22:23:56 +0100 Subject: [PATCH] Include lifted state for REORDER_ACTION --- packages/redux-devtools-app/src/utils/monitorActions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/redux-devtools-app/src/utils/monitorActions.ts b/packages/redux-devtools-app/src/utils/monitorActions.ts index e4437f7a..a381e37c 100644 --- a/packages/redux-devtools-app/src/utils/monitorActions.ts +++ b/packages/redux-devtools-app/src/utils/monitorActions.ts @@ -51,6 +51,7 @@ export function nonReduxDispatch( switch (action.type) { case 'TOGGLE_ACTION': + case 'REORDER_ACTION': return stringifyJSON(state, true); case 'JUMP_TO_STATE': return stringifyJSON(state.computedStates[action.index].state, true);