@@ -204,7 +204,7 @@ class Channel implements Channel {
204204alreadyConfigured :true ,
205205} )
206206// update the current stepId on startup
207- vscode . commands . executeCommand ( COMMANDS . SET_CURRENT_STEP , action . payload )
207+ vscode . commands . executeCommand ( COMMANDS . SET_CURRENT_STEP , action . payload . stepId )
208208return
209209} catch ( e ) {
210210const error = {
@@ -266,14 +266,14 @@ class Channel implements Channel {
266266return
267267// load step actions (git commits, commands, open files)
268268case 'SETUP_ACTIONS' :
269- await vscode . commands . executeCommand ( COMMANDS . SET_CURRENT_STEP , action . payload )
270- setupActions ( action . payload , this . send )
269+ await vscode . commands . executeCommand ( COMMANDS . SET_CURRENT_STEP , action . payload . stepId )
270+ setupActions ( action . payload . actions , this . send )
271271return
272272// load solution step actions (git commits, commands, open files)
273273case 'SOLUTION_ACTIONS' :
274- await solutionActions ( action . payload , this . send )
274+ await solutionActions ( action . payload . actions , this . send )
275275// run test following solution to update position
276- vscode . commands . executeCommand ( COMMANDS . RUN_TEST , action . payload )
276+ vscode . commands . executeCommand ( COMMANDS . RUN_TEST , action . payload . stepId )
277277return
278278
279279default :