summaryrefslogtreecommitdiff
path: root/src/components/ErrorBoundaryFallback.js
diff options
context:
space:
mode:
authorHaishan <[email protected]>2020-06-20 22:28:43 +0800
committerHaishan <[email protected]>2020-06-20 22:28:43 +0800
commit632c6a37350c830902046546fc07ce764ca009a0 (patch)
treeed90e7cef41865732dafe7de22e33a3a1c589927 /src/components/ErrorBoundaryFallback.js
parent71a7d8d4c125a5751c94ecb10468994634286425 (diff)
feat: add a simple filter for proxy names
Diffstat (limited to 'src/components/ErrorBoundaryFallback.js')
-rw-r--r--src/components/ErrorBoundaryFallback.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ErrorBoundaryFallback.js b/src/components/ErrorBoundaryFallback.js
index 211985a..b03428e 100644
--- a/src/components/ErrorBoundaryFallback.js
+++ b/src/components/ErrorBoundaryFallback.js
@@ -1,9 +1,9 @@
-import React from 'react';
import PropTypes from 'prop-types';
-import SvgYacd from './SvgYacd';
-import SvgGithub from './SvgGithub';
+import React from 'react';
import s0 from './ErrorBoundaryFallback.module.css';
+import SvgGithub from './SvgGithub';
+import SvgYacd from './SvgYacd';
const yacdRepoIssueUrl = 'https://github.com/haishanh/yacd/issues';
function ErrorBoundaryFallback({ message, detail }) {
@@ -25,7 +25,7 @@ function ErrorBoundaryFallback({ message, detail }) {
}
ErrorBoundaryFallback.propTypes = {
- message: PropTypes.string
+ message: PropTypes.string,
};
export default ErrorBoundaryFallback;