@@ -17,7 +17,7 @@ export const useFooterLinksStore = defineStore('footerLinks',{
},
getLinkByLabel(oldLabel:string){
- return this.links.find((link) => link.Label == oldLabel)
+ return this.links.find((link:any) => (link.Label as string) == oldLabel)