Merge remote-tracking branch 'parent/main' into kb_migration

This commit is contained in:
KMY 2023-09-12 09:27:06 +09:00
commit 2311fcd799
30 changed files with 408 additions and 444 deletions

View file

@ -11,7 +11,7 @@ const mapStateToProps = (state, { account }) => ({
const mapDispatchToProps = (dispatch, { account }) => ({
onSave (value) {
dispatch(submitAccountNote(account.get('id'), value));
dispatch(submitAccountNote({ id: account.get('id'), value}));
},
});