diff --git a/src/components/ItemTable/ItemTable.js b/src/components/ItemTable/ItemTable.js index 059494f..65c6cf2 100644 --- a/src/components/ItemTable/ItemTable.js +++ b/src/components/ItemTable/ItemTable.js @@ -1,7 +1,7 @@ import React, { useState } from "react"; import PropTypes from "prop-types"; import { useTable, useFilters, useFlexLayout, useSortBy } from "react-table"; -import { Table, TableBody, TableCell, TableHead, TableRow, TableContainer, Paper, Grid, ButtonGroup, IconButton, makeStyles, useTheme } from "@material-ui/core"; +import { Table, TableBody, TableCell, TableHead, TableRow, TableContainer, Grid, ButtonGroup, IconButton, makeStyles, useTheme } from "@material-ui/core"; import { useHistory } from "react-router-dom"; import RelativeTime from "react-relative-time"; import ItemTableFilter from "../ItemTableFilter/" @@ -88,7 +88,7 @@ export default function ItemTable({ data, rowCanBeSelected }) { { const isSortedAsc = column.isSorted && !column.isSortedDesc; isSortedAsc ? column.clearSortBy() : column.toggleSortBy(false) @@ -96,11 +96,11 @@ export default function ItemTable({ data, rowCanBeSelected }) { > { const isSortedDesc = column.isSorted && column.isSortedDesc; isSortedDesc ? column.clearSortBy() : column.toggleSortBy(true) @@ -108,7 +108,7 @@ export default function ItemTable({ data, rowCanBeSelected }) { >