You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: always show checkpoint restore options regardless of change detection
Previously, checkpoint restore options were hidden when the system detected no changes (isCurrent === true). This caused the checkpoint menu popover to appear empty for current checkpoints.
Changes:
- Removed conditional rendering in CheckpointMenu.tsx that hid restore options for current checkpoints
- Prefixed unused currentHash parameter with underscore to satisfy linter
- Removed conditional rendering in App.tsx for CheckpointRestoreDialog
- Always show 'Restore to Checkpoint' button in CheckpointRestoreDialog.tsx
- Updated tests to reflect the new behavior
All checkpoint restore options are now always visible, ensuring users can restore to any checkpoint even when change detection indicates no differences.
0 commit comments