mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 09:14:59 +03:00
Move from prettier-eslint to eslint-plugin-prettier, update dependencies
This commit is contained in:
@@ -10,15 +10,13 @@ const mapStateToProps = ({ userCreateForm: { data: defaultData, isSubmitting, er
|
||||
error,
|
||||
});
|
||||
|
||||
const mapDispatchToProps = (dispatch) => bindActionCreators(
|
||||
{
|
||||
onCreate: createUser,
|
||||
onMessageDismiss: clearUserCreateError,
|
||||
},
|
||||
dispatch,
|
||||
);
|
||||
const mapDispatchToProps = dispatch =>
|
||||
bindActionCreators(
|
||||
{
|
||||
onCreate: createUser,
|
||||
onMessageDismiss: clearUserCreateError,
|
||||
},
|
||||
dispatch,
|
||||
);
|
||||
|
||||
export default connect(
|
||||
mapStateToProps,
|
||||
mapDispatchToProps,
|
||||
)(AddUserPopup);
|
||||
export default connect(mapStateToProps, mapDispatchToProps)(AddUserPopup);
|
||||
|
||||
Reference in New Issue
Block a user