fix(35-03): add cursor-pointer to ItemCard navigable case

- Add cursor-pointer to the non-null linkTo branch of the outer button
- Preserve cursor-default for the null linkTo branch (setup cards)
This commit is contained in:
2026-04-19 19:49:44 +02:00
parent 2d45b9024d
commit e1d516cfe8

View File

@@ -75,7 +75,7 @@ export function ItemCard({
<button
type="button"
onClick={handleClick}
className={`relative w-full text-left bg-white rounded-xl border border-gray-100 transition-all overflow-hidden group ${linkTo === null ? "cursor-default" : "hover:border-gray-200 hover:shadow-sm"}`}
className={`relative w-full text-left bg-white rounded-xl border border-gray-100 transition-all overflow-hidden group ${linkTo === null ? "cursor-default" : "cursor-pointer hover:border-gray-200 hover:shadow-sm"}`}
>
{!onRemove && (
<span