diff --git a/src/pages/index.vue b/src/pages/index.vue index ccda1ee..13c66cc 100644 --- a/src/pages/index.vue +++ b/src/pages/index.vue @@ -2,7 +2,7 @@ /* eslint-disable vue/no-v-html -- we might wanna avoid this by rewriting the locales to use variables */ const { te, t, tm } = useI18n(); -const nOfQAs = computed(() => tm('faq.QAs') as string[]).value.length; +const nOfQAs = computed(() => tm('faq.QAs') as string[]).value.length - 1; const maxCoreStaffIndex = computed(() => tm('credits.people') as string[]).value.length - 1; const maxContributorsIndex = computed(() => tm('specialThanks.people') as string[]).value.length - 1;