diff --git a/components/ErrorReportNotifier.tsx b/components/ErrorReportNotifier.tsx index 6c9e88b9..5a862599 100644 --- a/components/ErrorReportNotifier.tsx +++ b/components/ErrorReportNotifier.tsx @@ -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,