Files
bflows-bandi-fe/src/store/zustand-x-opts.js
Vitalii Kiiko 7804a67fd2 - styled asteriks sign;
- fixed issue with validation on registration page;
- fixed issue with inputnumber;
- fixed issue with editor field;;
- added editors for new faq item form;
- fixed displaying html as simple text;
- fixed saving company data after saving;
- added toast for edit bando form;
- improved edit forms form;
- fixed styles for various elements;
2024-10-04 11:31:47 +02:00

15 lines
313 B
JavaScript

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