refactor: match frustration tables to dashboard pattern

- Remove column headers for cleaner look
- Show secondary info (avg, sessions, last seen) on hover
- Add orange percentage badge that slides in on hover
- Add empty row padding for consistent card height
This commit is contained in:
Usman Baig
2026-03-12 18:27:20 +01:00
parent 13f6f53868
commit 5050422a60
2 changed files with 46 additions and 43 deletions

View File

@@ -166,6 +166,7 @@ export default function BehaviorPage() {
description="Elements users clicked repeatedly in frustration"
items={rageClicks.items}
total={rageClicks.total}
totalSignals={summary?.rage_clicks ?? 0}
showAvgClicks
loading={loading}
fetchAll={fetchAllRage}
@@ -175,6 +176,7 @@ export default function BehaviorPage() {
description="Elements users clicked that produced no response"
items={deadClicks.items}
total={deadClicks.total}
totalSignals={summary?.dead_clicks ?? 0}
loading={loading}
fetchAll={fetchAllDead}
/>