-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
Description
Summary
- There is no UI affordance to clear the recent launches list once it fills with test data.
- Provide a button to purge the in-memory history and request the backend to truncate stored entries.
Why it matters
- Helps users reset the app after demos or tests and reduces noise when verifying new routing rules.
Acceptance Criteria
- Add a "Clear history" button to
apps/desktop/src/pages/Dashboard.tsx, with a confirmation prompt to avoid accidental clicks. - Call a new Tauri command or extend the existing state to drop history entries (mirror behaviour of
RoutingService::clear_active). - Surface a toast or inline message confirming the history was cleared.
Additional context
- Updating
RoutingServiceinapps/desktop/src-tauri/src/routing.rsto expose aclear_historycommand will likely be required.