Skip to content

Commit

Permalink
Merge branch 'feature/do-not-show-pointer-if-no-row-click' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Nov 13, 2024
2 parents 747d232 + 07b3fa7 commit c61d2b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/InfiniteTable/InfiniteTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -478,9 +478,9 @@ const InfiniteTableComp = forwardRef<InfiniteTableRef, InfiniteTableProps>(

const rowStyle = useMemo(() => {
return {
cursor: "pointer",
cursor: onRowDoubleClick ? "pointer" : "default",
};
}, []);
}, [onRowDoubleClick]);

return (
<div
Expand Down

0 comments on commit c61d2b8

Please sign in to comment.