Skip to content

Commit 4a0c601

Browse files
author
Vikas Agarwal
committed
Fixed lint error
1 parent 15ca5f9 commit 4a0c601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/projects/create/components/ProjectWizard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ class ProjectWizard extends Component {
237237
// update only dirtyProject when Form changes the model
238238
dirtyProject: _.mergeWith({}, this.state.dirtyProject, unflatten(change),
239239
// customizer to override array value with changed values
240-
(objValue, srcValue, key) => {
240+
(objValue, srcValue, key) => {// eslint-disable-line no-unused-vars
241241
if (_.isArray(srcValue)) {
242242
return srcValue// srcValue contains the changed values from action payload
243243
}

0 commit comments

Comments
 (0)