From cd29781b89cb50ca14749290ba990e77d998c662 Mon Sep 17 00:00:00 2001 From: Julian Ladisch Date: Sat, 28 Jun 2025 19:09:11 +0200 Subject: [PATCH] Fix broken external links in Footer, replace `` with `` `` doesn't support external links in react-router versions before 6.8.0: https://github.com/remix-run/react-router/blob/main/CHANGELOG.md#v680 We use react-router version 4.3.1 resulting in broken links to Terms, Privacy, and Notices. This gets fixed by replacing `` with ``. Fixes #995. --- src/components/Footer.js | 30 +++--------------------------- 1 file changed, 3 insertions(+), 27 deletions(-) diff --git a/src/components/Footer.js b/src/components/Footer.js index 69c5a4f4..433901c7 100644 --- a/src/components/Footer.js +++ b/src/components/Footer.js @@ -3,7 +3,6 @@ import React, { Component } from 'react' import { SocialIcons } from './' -import { Link } from 'react-router-dom' // import { API_DEVELOP, API_PROD, API_LOCAL } from '../api/clearlyDefined'; // function colorize(content) { @@ -40,36 +39,13 @@ export default class Footer extends Component {

- Terms - Privacy - Notices + Terms + Privacy + Notices
- // ) } }