Skip to content

Commit

Permalink
Revert "fix: access control checks errors"
Browse files Browse the repository at this point in the history
This reverts commit fd1893f.
  • Loading branch information
buckhalt committed Mar 1, 2024
1 parent fd1893f commit 223f181
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions components/ErrorReportNotifier.tsx
Expand Up @@ -67,11 +67,6 @@ export default function ErrorReportNotifier({ error }: { error: Error }) {
if (initialized.current) return;
setState('loading');

// limit size of error.stack
if (error.stack && error.stack.length > 500) {
error.stack = error.stack.substring(0, 500);
}

trackEvent({
type: 'Error',
name: error.name,
Expand Down

0 comments on commit 223f181

Please sign in to comment.