diff options
author | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:58:45 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-08-19 13:59:07 -0700 |
commit | d3c7705bedebd65c94f9eea691aaf2fe03b0cafe (patch) | |
tree | 5f98b3d9bbbd4fe8067b5a334e84aff008b8db22 /modern/src/ErrorBoundary.js | |
parent | 0161ae449d4a7bd0781c0665d663353663ab0faf (diff) | |
download | trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.gz trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.tar.bz2 trackermap-web-d3c7705bedebd65c94f9eea691aaf2fe03b0cafe.zip |
Move to Vite
Diffstat (limited to 'modern/src/ErrorBoundary.js')
-rw-r--r-- | modern/src/ErrorBoundary.js | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/modern/src/ErrorBoundary.js b/modern/src/ErrorBoundary.js deleted file mode 100644 index 93a6fe0f..00000000 --- a/modern/src/ErrorBoundary.js +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; -import { Alert } from '@mui/material'; - -class ErrorBoundary extends React.Component { - constructor(props) { - super(props); - this.state = { - error: null, - }; - } - - static getDerivedStateFromError(error) { - return { error }; - } - - /* eslint-disable react/no-danger */ - render() { - const { error } = this.state; - if (error) { - return ( - <Alert severity="error"> - <code - dangerouslySetInnerHTML={{ - __html: error.stack.replaceAll('\n', '<br>').replaceAll(' ', ' '), - }} - /> - </Alert> - ); - } - const { children } = this.props; - return children; - } -} - -export default ErrorBoundary; |