In the Pipelines table (pipelines/page.tsx), each cell renders its own individual <Link> wrapping the cell content, rather than making the entire TableRow clickable. This means users must click precisely on text to navigate. There's a cursor-pointer on the row but clicking empty cell space does nothing, breaking the affordance that the row is interactive.
Category: usability File: src/app/dashboard/pipelines/page.tsx Recommendation: Convert each TableRow into a full-width link by wrapping it or using a tr onClick handler with router.push(). The pattern already exists in ProductsView's list mode. Alternatively, use the 'grid link' pattern where a single <Link> uses position:absolute to fill the entire row. This is a standard data table UX expectation.