From 7db5e448cdea1ace428e12be8de6896d8d3d1b25 Mon Sep 17 00:00:00 2001 From: Tyler Date: Sun, 21 Jun 2026 14:19:39 -0600 Subject: [PATCH] feat(dashboard): Recent denials row drillable to /claims?claim=ID --- src/pages/Dashboard.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/pages/Dashboard.tsx b/src/pages/Dashboard.tsx index 13dbf11..2fca5f3 100644 --- a/src/pages/Dashboard.tsx +++ b/src/pages/Dashboard.tsx @@ -350,7 +350,14 @@ export function Dashboard() { {topDenials.map((c) => (
  • navigate(`/claims?claim=${encodeURIComponent(c.id)}`)} + onKeyDown={(e) => { + if (e.key === "Enter") navigate(`/claims?claim=${encodeURIComponent(c.id)}`); + }} + role="button" + tabIndex={0} + aria-label={`View claim ${c.id}`} + className="drillable flex items-start gap-3 py-3 first:pt-0 last:pb-0" >
    {c.id}