chore: updated after third level routing

This commit is contained in:
Jose Sousa 2020-12-08 11:32:18 +00:00 committed by Josh Harvey
parent 78ba6bad8b
commit 15e953788e

View file

@ -141,7 +141,14 @@ const tree = [
route: '/settings/operator-info', route: '/settings/operator-info',
title: 'Operator Information', title: 'Operator Information',
get component() { get component() {
return () => <Redirect to={this.children[0].route} /> return () => (
<Redirect
to={{
pathname: this.children[0].route,
state: { prev: this.state?.prev }
}}
/>
)
}, },
children: [ children: [
{ {
@ -266,7 +273,7 @@ const Routes = () => {
history.push('/wizard') history.push('/wizard')
} }
const Transition = history.action === 'PUSH' && location.state ? Slide : Fade const Transition = location.state ? Slide : Fade
const transitionProps = const transitionProps =
Transition === Slide Transition === Slide