Skip to content

Commit 7e4587f

Browse files
author
Vikas Agarwal
committed
Fixed lint errors
1 parent 932d69e commit 7e4587f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/projects/create/containers/CreateContainer.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ class CreateConainer extends React.Component {
106106
}
107107

108108
// stores the incomplete project in local storage
109-
onLeave(e) {
110-
const { wizardStep, isProjectDirty, creatingProject } = this.state
109+
onLeave(e) {// eslint-disable-line no-unused-vars
110+
const { wizardStep, isProjectDirty } = this.state
111111
if (wizardStep === ProjectWizard.Steps.WZ_STEP_FILL_PROJ_DETAILS && isProjectDirty) {// Project Details step
112112
console.log('saving incomplete project')
113113
window.localStorage.setItem(LS_INCOMPLETE_PROJECT, JSON.stringify(this.state.updatedProject))

0 commit comments

Comments
 (0)