Reputation: 5492
I have been using redux-persist-transform-encrypt package to encrypt my redux storage data inside the app.
What I want to know is how to check whether my redux data is encrypted or not?
Upvotes: 0
Views: 490
Reputation: 136
You can check it from Local Storage section in Chrome DevTools. As you can see below my redux data is encrypted by redux-persist-transform-encrypt
Upvotes: 1