This guide explains how to delete stored content and reset the Mutable application.
Mutable stores the following data in your browser's localStorage:
-
Backups (
mutable-backups)- Mute list backups (up to 50)
- Follow list backups (up to 50)
- Backup metadata and timestamps
-
Application State (
mutable-storage)- Current session information
- Active mute list (cached)
- Application preferences
- Active tab selection
- Onboarding completion status
- Unsaved changes flags
- Your mute lists on Nostr relays remain unchanged
- Your follow lists on Nostr relays remain unchanged
- Your profile and posts are unaffected
- This only clears the LOCAL cache and backups
- Open Mutable and log in
- Navigate to the Backups tab
- Scroll to the bottom to find the "Danger Zone: Reset Application" section
- Click "Reset Application"
- Confirm by clicking "Yes, Reset Everything"
- The app will clear all data and redirect you to the home page
✓ All backups from browser storage ✓ All application settings and preferences ✓ Session data (you'll need to reconnect) ✓ Cached mute list and follow list data ✓ Onboarding completion status
-
Open your browser's Developer Console:
- Chrome/Edge: Press
F12orCtrl+Shift+I(Windows) /Cmd+Option+I(Mac) - Firefox: Press
F12orCtrl+Shift+K(Windows) /Cmd+Option+K(Mac) - Safari: Enable Developer menu in Preferences, then press
Cmd+Option+C
- Chrome/Edge: Press
-
Go to the Console tab
-
Run one of the following commands:
localStorage.clear();
location.reload();localStorage.removeItem('mutable-backups');
location.reload();localStorage.removeItem('mutable-storage');
location.reload();console.log('Backups:', localStorage.getItem('mutable-backups'));
console.log('App State:', localStorage.getItem('mutable-storage'));- Go to
Settings→Privacy and security→Clear browsing data - Select "Cookies and other site data" and "Cached images and files"
- Choose time range: "All time"
- Click "Clear data"
- Go to
Settings→Privacy & Security - Under "Cookies and Site Data", click "Clear Data"
- Select both options and click "Clear"
- Go to
Preferences→Privacy - Click "Manage Website Data"
- Find
mutableor your app domain - Click "Remove" or "Remove All"
- Open Developer Tools (
F12) - Go to the Application tab (Chrome/Edge) or Storage tab (Firefox)
- In the left sidebar, expand Local Storage
- Click on your Mutable app domain
- You'll see stored keys like
mutable-backupsandmutable-storage - Right-click and select "Delete" for each key, or click "Clear All"
- Refresh the page
Use the Backups tab interface to:
- Delete individual backups (click trash icon on any backup)
- Delete all backups (click "Delete All" button in the actions bar)
- Filter by type before deleting
In the browser console:
let state = JSON.parse(localStorage.getItem('mutable-storage'));
state.hasCompletedOnboarding = false;
localStorage.setItem('mutable-storage', JSON.stringify(state));
location.reload();Just click the "Disconnect" button in the top right of the dashboard.
- Hard refresh the page:
Ctrl+Shift+R(Windows) orCmd+Shift+R(Mac) - Close and reopen the browser
- Check if using Private/Incognito mode (data may not persist anyway)
- If you exported backups to JSON files, you can re-import them via the Backups tab
- Reconnect your Nostr account to re-fetch your mute and follow lists from relays
- If no backup exists, your Nostr relay data is still safe and will reload when you reconnect
Try these steps in order:
- Export your backups first (just in case)
- Use the built-in Reset Application feature
- Reconnect your Nostr account
- Re-import backups if needed
✅ Before Resetting:
- Export important backups to JSON files (Download button on each backup)
- Note down any custom settings you want to recreate
✅ Regular Maintenance:
- Create backups before making major changes
- Export critical backups to your computer monthly
- Review and delete old unnecessary backups
✅ Privacy:
- Clear app data if using a shared/public computer
- Export backups to encrypted storage if needed
- Remember: Nostr data is public unless encrypted
If you need help:
- Check the Mutable documentation
- Open an issue on GitHub
- Join the Nostr community for support
Last Updated: October 2025