We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 932d69e commit 7e4587fCopy full SHA for 7e4587f
src/projects/create/containers/CreateContainer.jsx
@@ -106,8 +106,8 @@ class CreateConainer extends React.Component {
106
}
107
108
// stores the incomplete project in local storage
109
- onLeave(e) {
110
- const { wizardStep, isProjectDirty, creatingProject } = this.state
+ onLeave(e) {// eslint-disable-line no-unused-vars
+ const { wizardStep, isProjectDirty } = this.state
111
if (wizardStep === ProjectWizard.Steps.WZ_STEP_FILL_PROJ_DETAILS && isProjectDirty) {// Project Details step
112
console.log('saving incomplete project')
113
window.localStorage.setItem(LS_INCOMPLETE_PROJECT, JSON.stringify(this.state.updatedProject))
0 commit comments