Karnsaty1

Results 2 comments of Karnsaty1

The main reason for inconsistent object ordering is the use of JSON.stringify, which doesn’t guarantee ordered key-value pairs. Instead, use: **const stringify = require('json-stable-stringify'); stringify(object);** _This ensures the serialized output...

**@tiberiuichim** I'd like to take this issue and work on a proper solution using json-stable-stringify and normalization of dynamic values in the Redux state. Let me know if I can...