Skip to content

Commit

Permalink
Removed unneccsary className prop
Browse files Browse the repository at this point in the history
  • Loading branch information
wrigh393 committed May 5, 2021
1 parent 288fe58 commit 173c93f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/ItemTable/ItemTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ export default function ItemTable({ data, rowCanBeSelected, loading }) {
<Table stickyHeader {...getTableProps()} size="small">
<TableHead>
{headerGroups.map(headerGroup => (
<TableRow {...headerGroup.getHeaderGroupProps()} className="tr">
<TableRow {...headerGroup.getHeaderGroupProps()}>
{headerGroup.headers.map(column => (
<TableCell {...column.getHeaderProps()} className="th">
<TableCell {...column.getHeaderProps()}>
<Grid container spacing={0}>
<Grid item sm={10}>
{column.render('Filter')}
Expand Down Expand Up @@ -165,7 +165,6 @@ export default function ItemTable({ data, rowCanBeSelected, loading }) {
let isSelected = selectedRow.queue === row.original.queue && selectedRow.number === row.original.number
return (
<TableRow
style={style}
hover
onClick={() => {
history.push(`/${row.original.queue}/${row.original.number}`);
Expand Down

0 comments on commit 173c93f

Please sign in to comment.