Skip to content

Commit

Permalink
remove contracts counts stats (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
ixje authored Aug 23, 2023
1 parent a74e8d4 commit d51075c
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/components/list/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,7 @@ export const List: React.FC<ListProps> = ({

return (
<div className="data-list-container">
{countConfig && (
<div className="data-list-count-stats">
{' '}
{countConfig.label} 1 to {data.length}{' '}
{!!countConfig.total
? `of ${countConfig.total.toLocaleString()}`
: null}
</div>
)}
{countConfig && <div className="data-list-count-stats"> </div>}
<div className="data-list" style={gridstyle}>
{columns.map((column, i) => {
return orderData ? (
Expand Down

0 comments on commit d51075c

Please sign in to comment.