Skip to content

Commit f7e4440

Browse files
authored
fix(nextjs-insights): Display rage clicks (#91925)
- closes [TET-490: Rage Clicks are shown as 0 in widget, but API returns 2](https://linear.app/getsentry/issue/TET-490/rage-clicks-are-shown-as-0-in-widget-but-api-returns-2)
1 parent 9d5c692 commit f7e4440

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/app/views/insights/pages/platform/nextjs/deadRageClickWidget.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export function DeadRageClicksWidget() {
3232
sort: '-count_dead_clicks',
3333
cursor: undefined,
3434
query: fullQuery,
35-
isWidgetData: true,
35+
// Setting this to true just strips rage clicks from the data
36+
isWidgetData: false,
3637
});
3738

3839
const isEmpty = !isLoading && data.length === 0;

0 commit comments

Comments
 (0)