So I am debugging my redux app on the browser, I had a bug which modified my state and I am also using redux- persist, the state is persisted on my browser.
I wanna reset the state to be an empty slate again, how can I do it ?
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
It was solved by using
localStorage.clear()
in browser’s console.