From 44bdb5dc2a880ed4867c2a9206c800ba76e3f675 Mon Sep 17 00:00:00 2001 From: Alexandru Munteanu <alexandru.munt@gmail.com> Date: Thu, 15 Mar 2018 11:04:11 +0200 Subject: [PATCH] fix(hin-437): shorten the time it takes to redirect to the new created manuscript --- packages/component-wizard/src/redux/conversion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/component-wizard/src/redux/conversion.js b/packages/component-wizard/src/redux/conversion.js index b41a93f5d..a290931bb 100644 --- a/packages/component-wizard/src/redux/conversion.js +++ b/packages/component-wizard/src/redux/conversion.js @@ -69,7 +69,7 @@ export const createDraftSubmission = history => (dispatch, getState) => { // redirect after a short delay window.setTimeout(() => { history.push(route) - }, 1000) + }, 10) }) }) } -- GitLab