diff --git a/backend/apps/agents/browser/browser_batch_replay.py b/backend/apps/agents/browser/browser_batch_replay.py index b08ea2c5..438caa20 100644 --- a/backend/apps/agents/browser/browser_batch_replay.py +++ b/backend/apps/agents/browser/browser_batch_replay.py @@ -130,10 +130,6 @@ def is_replay_boundary(step: dict) -> bool: return False -# A genuine "this click just completed the outward send" signal, kept tighter -# than _LIVE_IRREVERSIBLE_RE so a Drive 'Share' menuitem (opens a recipient -# dialog) doesn't get treated as the send itself. Used only for the post-send -# wind-down hint; batch/replay guards stay conservative on the looser regex. _SEND_COMPLETED_RE = re.compile( r"\b(send|submit|pay|place\s*order|complete\s*(order|purchase|checkout|payment))\b", re.I,