I have set namespaced: true to each of my modules. I need to persist just the _barcode witch it's inside one of my modules ( i have 10 modules). I have tried:
const dataState = createPersistedState({ paths: ["auth/_barcode"] });const dataState = createPersistedState({ paths: ["_barcode"] });
I'm doing something wrong ? or it's not possible to do that ? or it's a bug ?
I have set
namespaced: true
to each of my modules. I need to persist just the _barcode witch it's inside one of my modules ( i have 10 modules). I have tried:const dataState = createPersistedState({ paths: ["auth/_barcode"] });
const dataState = createPersistedState({ paths: ["_barcode"] });
I'm doing something wrong ? or it's not possible to do that ? or it's a bug ?