@@ -6,7 +6,7 @@ import LoadingPage from './containers/Loading'
66import StartPage from './containers/Start'
77import SelectTutorialPage from './containers/SelectTutorial'
88import CompletedPage from './containers/Tutorial/CompletedPage'
9- import LevelSummaryPage from './containers/Tutorial/LevelPage '
9+ import TutorialPage from './containers/Tutorial'
1010
1111const Routes = ( ) => {
1212 const { context, send, Router, Route } = useRouter ( )
@@ -30,21 +30,18 @@ const Routes = () => {
3030 < Route path = "Setup.Start" >
3131 < StartPage send = { send } context = { context } />
3232 </ Route >
33- < Route path = { [ 'Setup.LoadTutorialSummary' , 'Setup.LoadTutorialData' , 'Setup.SetupNewTutorial' ] } >
34- < LoadingPage text = "Loading Tutorial..." processes = { context . processes } /> ]
35- </ Route >
3633 < Route path = "Setup.SelectTutorial" >
3734 < SelectTutorialPage send = { send } context = { context } />
3835 </ Route >
39- < Route path = { [ 'Setup.SetupNewTutorial' , 'Setup.StartNewTutorial ' ] } >
36+ < Route path = { [ 'Setup.SetupNewTutorial' , 'Setup.StartTutorial ' ] } >
4037 < LoadingPage text = "Configuring tutorial..." />
4138 </ Route >
4239 { /* Tutorial */ }
4340 < Route path = { [ 'Tutorial.LoadNext' , 'Tutorial.Level.Load' ] } >
4441 < LoadingPage text = "Loading Level..." processes = { context . processes } />
4542 </ Route >
4643 < Route path = "Tutorial.Level" >
47- < LevelSummaryPage send = { send } context = { context } />
44+ < TutorialPage send = { send } context = { context } />
4845 </ Route >
4946 { /* Completed */ }
5047 < Route path = "Tutorial.Completed" >
0 commit comments