Skip to content

Commit

Permalink
chore: removed ununsed code
Browse files Browse the repository at this point in the history
  • Loading branch information
tewarig committed Jan 24, 2025
1 parent 213540c commit 43a0f2d
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions packages/blade/src/components/Table/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,4 @@ const getTableRowSelector = ({ isVirtualized }: { isVirtualized?: boolean }): st
return isVirtualized ? 'tr' : 'tr';
};

const getTableDataSelector = ({ isVirtualized }: { isVirtualized?: boolean }): string => {
return isVirtualized ? 'td' : 'td';
};

export {
getTableActionsHoverStyles,
getTableRowBackgroundTransition,
getTableRowSelector,
getTableDataSelector,
};
export { getTableActionsHoverStyles, getTableRowBackgroundTransition, getTableRowSelector };

0 comments on commit 43a0f2d

Please sign in to comment.