apply suggested changes

This commit is contained in:
Bnyro 2022-09-10 11:09:54 +02:00 committed by Kavin
parent cc75ff1c65
commit 8899425a47
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
1 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,7 @@ export default {
},
methods: {
async fetchConfig() {
fetch("config.json").then(async response => {
const config = await response.json();
this.fetchJson("confg.json").then(config => {
this.donationHref = config.donation_href;
this.statusPageHref = config.status_page_href;
});
@ -46,7 +45,7 @@ export default {
};
</script>
<style scoped>
<style>
footer {
@apply bg-light-900;
}