diff --git a/packages/component-wizard/src/components/WizardFormStep.js b/packages/component-wizard/src/components/WizardFormStep.js index 2a9f4dd9f336ef606b4386c6fca340642bc3ed6e..b50d4d3e408bc85af1d024e385aa8aa350fa8486 100644 --- a/packages/component-wizard/src/components/WizardFormStep.js +++ b/packages/component-wizard/src/components/WizardFormStep.js @@ -45,6 +45,14 @@ const submitManuscript = ( ...values, }), ) + .then(() => + dispatch( + actions.updateCollection({ + id: project.id, + status: 'submitted', + }), + ), + ) .then(() => { history.push(redirectPath, { project: project.id, version: version.id }) })