Problem
The pause/resume contract functions are implemented but there is no UI surface for them. Grantors cannot pause a schedule from the dashboard.
What to add
When isGrantor && !schedule.revoked:
- If not paused: show a "Pause" button that calls
pause_schedule and refreshes.
- If paused: show a "Resume" button that calls
resume_schedule.
Include a confirmation modal similar to the existing RevokeModal.
Problem
The pause/resume contract functions are implemented but there is no UI surface for them. Grantors cannot pause a schedule from the dashboard.
What to add
When
isGrantor && !schedule.revoked:pause_scheduleand refreshes.resume_schedule.Include a confirmation modal similar to the existing
RevokeModal.