File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
web-app/src/services/state Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ class Channel implements Channel {
9898 throw new Error ( 'Invalid tutorial to continue' )
9999 }
100100 const continueConfig : T . TutorialConfig = tutorialContinue . version . data . config
101- tutorialConfig (
101+ await tutorialConfig (
102102 {
103103 config : continueConfig ,
104104 alreadyConfigured : true ,
Original file line number Diff line number Diff line change @@ -101,9 +101,7 @@ export const createMachine = (options: any) => {
101101 Summary : {
102102 on : {
103103 BACK : 'SelectTutorial' ,
104- TUTORIAL_START : {
105- target : 'LoadTutorialData' ,
106- } ,
104+ TUTORIAL_START : 'LoadTutorialData' ,
107105 } ,
108106 } ,
109107 LoadTutorialData : {
@@ -125,8 +123,8 @@ export const createMachine = (options: any) => {
125123 } ,
126124 SetupNewTutorial : {
127125 onEntry : [ 'configureNewTutorial' , 'startNewTutorial' ] ,
128- after : {
129- 0 : '#tutorial' ,
126+ on : {
127+ TUTORIAL_CONFIGURED : '#tutorial' ,
130128 } ,
131129 } ,
132130 ContinueTutorial : {
You can’t perform that action at this time.
0 commit comments