Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3827240 commit f557ed4Copy full SHA for f557ed4
src/channel/index.ts
@@ -74,8 +74,8 @@ class Channel implements Channel {
74
// continue from tutorial from local storage
75
const tutorial: TT.Tutorial | null = this.context.tutorial.get()
76
77
- // new tutorial
78
- if (!tutorial || !tutorial.id) {
+ if (!tutorial || !tutorial.config) {
+ // new tutorial
79
this.send({ type: 'START_NEW_TUTORIAL', payload: { env } })
80
return
81
}
@@ -187,6 +187,7 @@ class Channel implements Channel {
187
})
188
// update the current stepId on startup
189
vscode.commands.executeCommand(COMMANDS.SET_CURRENT_STEP, action.payload)
190
+ logger('Continue tutorial setup')
191
192
case 'EDITOR_VALIDATE_SETUP':
193
// check workspace is selected
0 commit comments