diff --git a/libs/table/cells/LinkCell.tsx b/libs/table/cells/LinkCell.tsx index 5a79ea2494..5cfa6be5a9 100644 --- a/libs/table/cells/LinkCell.tsx +++ b/libs/table/cells/LinkCell.tsx @@ -13,8 +13,13 @@ export const linkCell = (makeHref: (value: string) => string) => ({ value }: Cell) => { return ( - + {value} + {/* Pushes out the link area to the entire cell for improved clickability™ */} +
) }