Accept and redo

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

I noticed that it no longer asks me to accept the changes, and I noticed that when I rewrite the message and press send, an alert appears asking me to continue without returning or to continue by returning. I click on continue by returning, but in reality it has not deleted what was created with the previous message.

Steps to Reproduce

case for which
there is no actual reverting:
prompt, enter, rewrite the prompt just sent, click on the alert to continue with the reverting.
there is no ‘accept’:
prompt, enter, there is no ‘accept’ button.

Operating System

Windows 10/11

Version Information

Version: 2.5.20 (user setup)
VSCode Version: 1.105.1
Commit: 511523af765daeb1fa69500ab0df5b6524424610
Date: 2026-02-19T20:41:31.942Z
Build Type: Stable
Release Track: Default
Electron: 39.4.0
Chromium: 142.0.7444.265
Node.js: 22.22.0
V8: 14.2.231.22-electron.0
OS: Windows_NT x64 10.0.26200

Does this stop you from using Cursor

No - Cursor works, but with this issue

Hey, both bugs are known and related.

Missing Accept button: this is a diff rendering issue. The changes do get applied, but there’s no diff preview shown. Main thread: Only some diffs are shown when agent makes changes.

Revert doesn’t roll back changes: when diffs aren’t shown, checkpoint revert also stops working properly. The chat looks reverted, but the files stay changed. Similar reports: Revert to Checkpoint Broken, Auto applies code changes without approve.

The team is aware. For now, I’d recommend making a git commit before agent sessions, so you can roll back with git checkout -- . or git stash.

Let me know if there’s anything else.

thank you