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 dc8b7fc commit 2eb8b91Copy full SHA for 2eb8b91
1 file changed
app/components/AppFooter.vue
@@ -36,7 +36,7 @@ const socialLinks = computed(() => [
36
},
37
])
38
39
-const footerSections: Array<{ label: string; links: FooterLink[] }> = [
+const footerSections = computed<Array<{ label: string; links: FooterLink[] }>>(() => [
40
{
41
label: t('footer.resources'),
42
links: [
@@ -93,7 +93,7 @@ const footerSections: Array<{ label: string; links: FooterLink[] }> = [
93
94
],
95
96
-]
+])
97
</script>
98
99
<template>
0 commit comments