Files
bflows-bandi-fe/src/store/zustand-x-opts.js
Vitalii Kiiko cc8597b529 - updated dependencies;
- fixed displaying delega;
- fixed switching companies;
- added toast for profile and company profile;
- fixed registration 'deby/allow all' func;
2024-10-10 10:33:21 +02:00

15 lines
346 B
JavaScript

const zustandXOpts = {
devtools: {
enabled: process.env.NODE_ENV !== 'production'
},
persist: {
enabled: true,
partialize: (state) => ({
//userData: state.userData,
token: state.token,
chosenCompanyId: state.chosenCompanyId,
}),
}
}
export default zustandXOpts;