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 26e878f commit b2461e3Copy full SHA for b2461e3
src/tutorial/TutorialRepl.vue
@@ -24,7 +24,7 @@ const currentDescription = computed(() => {
24
25
const nextStep = computed(() => {
26
const nextMatch = currentStep.value.match(/\d+/)
27
- const next = nextMatch && `step-${+nextMatch[0]} + 1}`
+ const next = nextMatch && `step-${+nextMatch[0] + 1}`
28
if (next && data.hasOwnProperty(next)) {
29
return next
30
}
0 commit comments