Fix indentation for linting

This commit is contained in:
Paul Kaplan 2018-12-20 13:38:22 -05:00
parent 827a91ade0
commit 95658d06b8

View file

@ -17,10 +17,10 @@ class ErrorBoundary extends React.Component {
componentDidCatch (error, errorInfo) {
// Display fallback UI
Sentry.withScope(scope => {
Object.keys(errorInfo).forEach(key => {
scope.setExtra(key, errorInfo[key]);
});
Sentry.captureException(error);
Object.keys(errorInfo).forEach(key => {
scope.setExtra(key, errorInfo[key]);
});
Sentry.captureException(error);
});
this.setState({
hasError: true,