From d89808ce9da8441bfabe23022284917233d03466 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Thu, 24 Sep 2020 19:38:19 -0700 Subject: [PATCH] fix: Home link on 'Not Found' page --- app/scenes/Error404.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/scenes/Error404.js b/app/scenes/Error404.js index f4f30847c..b1b94158e 100644 --- a/app/scenes/Error404.js +++ b/app/scenes/Error404.js @@ -1,5 +1,6 @@ // @flow import * as React from "react"; +import { Link } from "react-router-dom"; import CenteredContent from "components/CenteredContent"; import Empty from "components/Empty"; import PageTitle from "components/PageTitle"; @@ -10,8 +11,8 @@ const Error404 = () => {

Not found

- We were unable to find the page you’re looking for. Go to the  - homepage? + We were unable to find the page you’re looking for. Go to the{" "} + homepage? );