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 6c45fdf commit 9dc08c5Copy full SHA for 9dc08c5
packages/rpc/src/routers/insights.ts
@@ -329,7 +329,7 @@ const buildInsights = (
329
currentValue: row.currentErrors,
330
previousValue: row.previousErrors,
331
changePercent: Math.round(changePercent),
332
- link: `/websites/${row.websiteId}?tab=errors`,
+ link: `/websites/${row.websiteId}/errors`,
333
});
334
}
335
@@ -361,7 +361,7 @@ const buildInsights = (
361
currentValue: row.currentP75,
362
previousValue: row.previousP75,
363
364
- link: `/websites/${row.websiteId}?tab=performance`,
+ link: `/websites/${row.websiteId}/vitals`,
365
366
367
@@ -388,7 +388,7 @@ const buildInsights = (
388
currentValue: row.currentCount,
389
previousValue: row.previousCount,
390
391
- link: `/websites/${row.websiteId}?tab=events`,
+ link: `/websites/${row.websiteId}/events`,
392
393
394
0 commit comments