Skip to content

Commit

Permalink
Fixed error boundary issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timwekkenbc committed Nov 13, 2024
1 parent bdcf37c commit a79cafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/ErrorBoundary/ErrorBoundary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ErrorBoundary extends React.Component<{ children: React.ReactNode }, Error
}

componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
// logError(error.message, errorInfo);
logError(error.message, errorInfo);
}

render() {
Expand Down

0 comments on commit a79cafc

Please sign in to comment.