diff --git a/src/components/FooterComponent.vue b/src/components/FooterComponent.vue index a10e4133..e357e6c7 100644 --- a/src/components/FooterComponent.vue +++ b/src/components/FooterComponent.vue @@ -37,8 +37,8 @@ export default { methods: { async fetchConfig() { this.fetchJson("confg.json").then(config => { - this.donationHref = config.donation_href; - this.statusPageHref = config.status_page_href; + this.donationHref = config?.donation_href; + this.statusPageHref = config?.status_page_href; }); }, },