File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from "react";
2
2
import { useLocation } from "react-router-dom" ;
3
3
import { Container } from "reactstrap" ;
4
4
import { TitleAndBreadcrumb } from "../elements/TitleAndBreadcrumb" ;
5
- import { siteSpecific } from "../../services" ;
5
+ import { siteSpecific , WEBMASTER_EMAIL } from "../../services" ;
6
6
7
7
const buildContactUrl = ( state : { overridePathname ?: string } , pathname : string ) => {
8
8
const page = encodeURIComponent ( ( state && state . overridePathname ) || pathname ) ;
@@ -33,8 +33,10 @@ export const NotFound = () => {
33
33
</ a > .
34
34
</ p > :
35
35
< p >
36
- It looks like you're offline. Please check your internet connection.
37
- </ p >
36
+ It looks like you are offline. You may want to check your internet connection, and then refresh this page to try again.
37
+ < br />
38
+ If you are still having issues, please < a href = { `mailto:${ WEBMASTER_EMAIL } ` } > let us know</ a > .
39
+ </ p > // Email link rather than contact form, as the contact form may not work offline
38
40
}
39
41
</ div >
40
42
</ Container > ;
You can’t perform that action at this time.
0 commit comments