Skip to content

Commit 9dc08c5

Browse files
committed
fix: links
1 parent 6c45fdf commit 9dc08c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/rpc/src/routers/insights.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ const buildInsights = (
329329
currentValue: row.currentErrors,
330330
previousValue: row.previousErrors,
331331
changePercent: Math.round(changePercent),
332-
link: `/websites/${row.websiteId}?tab=errors`,
332+
link: `/websites/${row.websiteId}/errors`,
333333
});
334334
}
335335

@@ -361,7 +361,7 @@ const buildInsights = (
361361
currentValue: row.currentP75,
362362
previousValue: row.previousP75,
363363
changePercent: Math.round(changePercent),
364-
link: `/websites/${row.websiteId}?tab=performance`,
364+
link: `/websites/${row.websiteId}/vitals`,
365365
});
366366
}
367367

@@ -388,7 +388,7 @@ const buildInsights = (
388388
currentValue: row.currentCount,
389389
previousValue: row.previousCount,
390390
changePercent: Math.round(changePercent),
391-
link: `/websites/${row.websiteId}?tab=events`,
391+
link: `/websites/${row.websiteId}/events`,
392392
});
393393
}
394394

0 commit comments

Comments
 (0)