diff --git a/packages/frontend/src/components/MkTutorial.vue b/packages/frontend/src/components/MkTutorial.vue index 35a7cb0c88..1227bf9537 100644 --- a/packages/frontend/src/components/MkTutorial.vue +++ b/packages/frontend/src/components/MkTutorial.vue @@ -127,7 +127,7 @@ export const tutorialBodyPagesDef = [{ type: 'tutorial', title: i18n.ts._initialTutorial._timeline.title, }, { - icon: 'ti ti-user-add', + icon: 'ti ti-user', type: 'setup', title: i18n.ts.follow, }, { @@ -207,7 +207,7 @@ const componentsDef: Tuple = [ const page = ref(props.initialPage ?? 0); const currentPageDef = computed(() => { - if (page.value > 0 && page.value < MAX_PAGE - 1) { + if (page.value > 0 && page.value < MAX_PAGE) { return tutorialBodyPagesDef[page.value - 1] ?? null; } else { return null;