diff --git a/frontend/src/component/feature/form-add-container.jsx b/frontend/src/component/feature/form-add-container.jsx index fa7f567c8b..de88d3acb2 100644 --- a/frontend/src/component/feature/form-add-container.jsx +++ b/frontend/src/component/feature/form-add-container.jsx @@ -12,7 +12,7 @@ const prepare = (methods, dispatch) => { e.preventDefault(); createFeatureToggles(input)(dispatch) .then(() => methods.clear()) - .then(() => hashHistory.push('/features')); + .then(() => hashHistory.push(`/features/edit/${input.name}`)); } );