diff --git a/packages/components/src/components/bal-footer/bal-footer.tsx b/packages/components/src/components/bal-footer/bal-footer.tsx index d3d9f1cda8..d2a2470b85 100644 --- a/packages/components/src/components/bal-footer/bal-footer.tsx +++ b/packages/components/src/components/bal-footer/bal-footer.tsx @@ -67,7 +67,7 @@ export class Footer implements BalConfigObserver { updateFooterLinks() { if (!this.hideLinks) { - const allowedHosts = ['baloise.ch'] // Allowed origins to fetch footer links + const allowedHosts = ['baloise.ch', 'baloise.dev'] // Allowed origins to fetch footer links if (allowedHosts.some(allowedHost => location.hostname.endsWith(allowedHost))) { loadFooterLinks(new Language(this.language)).then(links => (this.links = links)) } else {