diff --git a/extension/src/app/service/Monitor.ts b/extension/src/app/service/Monitor.ts index a3d0dd33..acdb6bff 100644 --- a/extension/src/app/service/Monitor.ts +++ b/extension/src/app/service/Monitor.ts @@ -51,7 +51,8 @@ export default class Monitor> { this.lastAction && /^@@redux\/(INIT|REPLACE)/.test(this.lastAction); isMonitorAction = () => this.lastAction && this.lastAction !== 'PERFORM_ACTION'; - isTimeTraveling = () => this.lastAction === 'JUMP_TO_STATE'; + isTimeTraveling = () => + this.lastAction === 'JUMP_TO_STATE' || this.lastAction === 'JUMP_TO_ACTION'; isPaused = () => { if (this.paused) { if (this.lastAction !== 'BLOCKED') {