mirror of
https://github.com/plankanban/planka.git
synced 2025-12-28 01:11:54 +03:00
Move from prettier-eslint to eslint-plugin-prettier, update dependencies
This commit is contained in:
@@ -9,15 +9,13 @@ const mapStateToProps = ({ projectCreateForm: { data: defaultData, isSubmitting
|
||||
isSubmitting,
|
||||
});
|
||||
|
||||
const mapDispatchToProps = (dispatch) => bindActionCreators(
|
||||
{
|
||||
onCreate: createProject,
|
||||
onClose: closeModal,
|
||||
},
|
||||
dispatch,
|
||||
);
|
||||
const mapDispatchToProps = dispatch =>
|
||||
bindActionCreators(
|
||||
{
|
||||
onCreate: createProject,
|
||||
onClose: closeModal,
|
||||
},
|
||||
dispatch,
|
||||
);
|
||||
|
||||
export default connect(
|
||||
mapStateToProps,
|
||||
mapDispatchToProps,
|
||||
)(AddProjectModal);
|
||||
export default connect(mapStateToProps, mapDispatchToProps)(AddProjectModal);
|
||||
|
||||
Reference in New Issue
Block a user