Skip to content

Commit 2eb8b91

Browse files
authored
fix(i18n): footer translations should actually be applied (#2711)
1 parent dc8b7fc commit 2eb8b91

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/AppFooter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const socialLinks = computed(() => [
3636
},
3737
])
3838
39-
const footerSections: Array<{ label: string; links: FooterLink[] }> = [
39+
const footerSections = computed<Array<{ label: string; links: FooterLink[] }>>(() => [
4040
{
4141
label: t('footer.resources'),
4242
links: [
@@ -93,7 +93,7 @@ const footerSections: Array<{ label: string; links: FooterLink[] }> = [
9393
},
9494
],
9595
},
96-
]
96+
])
9797
</script>
9898

9999
<template>

0 commit comments

Comments
 (0)