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}