From bc8a9b0efe03eacd40cc508998e93d13259e526c Mon Sep 17 00:00:00 2001 From: Bauke Date: Fri, 30 Sep 2022 12:24:33 +0200 Subject: [PATCH] Update footer links. --- source/options/components/page-footer.ts | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/source/options/components/page-footer.ts b/source/options/components/page-footer.ts index d42490d..56d19d0 100644 --- a/source/options/components/page-footer.ts +++ b/source/options/components/page-footer.ts @@ -12,15 +12,8 @@ export class PageFooter extends Component { const {manifest} = this.props; const version = manifest.version; - const donateLinkAttributes = { - href: 'https://github.com/sponsors/Bauke', - }; - const donateLink = html` - <${PrivacyLink} attributes=${donateLinkAttributes}>Donate - `; - const versionLinkAttributes = { - href: `https://github.com/Holllo/fangs/releases/tag/${version}`, + href: `https://git.bauke.xyz/Holllo/fangs/releases/tag/${version}`, }; const versionLink = html` <${PrivacyLink} attributes=${versionLinkAttributes}>v${version} @@ -28,10 +21,7 @@ export class PageFooter extends Component { return html` `; }