We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29137aa commit dc2f879Copy full SHA for dc2f879
apps/dashboard/src/app/(app)/team/[team_slug]/(team)/~/support/_components/SupportCaseDetails.tsx
@@ -545,12 +545,10 @@ class FeedbackErrorBoundary extends Component<
545
}
546
547
componentDidCatch(_error: Error, _errorInfo: { componentStack: string }) {
548
- // Report the error to analytics
549
- reportSupportFeedbackFailed({
+ // Report the error to analytics using status check failure event
+ // which doesn't include misleading feedback metrics
550
+ reportSupportFeedbackStatusCheckFailed({
551
ticketId: this.props.ticketId,
- rating: 0,
552
- hasFeedback: false,
553
- feedbackLength: 0,
554
errorMessage: `Error boundary: ${_error.message}`,
555
errorType: "unknown",
556
});
0 commit comments