# Clear browser storage when developing

By [N00b21337](https://paragraph.com/@n00b21337) · 2023-01-12

---

Different wallet scripts usually use window.localStorage  for saving data for reuse and determination of what is the status of wallet connect, sometimes this could be awire and you need to clear it, you could delete all in browser like cookies, stored data and all the rest but you can also call first this in console

    ​​​​​​​window.localStorage
    

to check what is saved and then you can delete it all with

    localStorage.clear();
    

or

    localStorage.removeItem("name of localStorage variable you want to remove");

---

*Originally published on [N00b21337](https://paragraph.com/@n00b21337/clear-browser-storage-when-developing)*
