Skip to content

Commit

Permalink
Remove Paper form ItemTable
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Apr 22, 2021
1 parent 342db23 commit 8eeca75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ItemTable/ItemTable.js
Original file line number Diff line number Diff line change
@@ -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, Box, Grid, ButtonGroup, IconButton, makeStyles, useTheme } from "@material-ui/core";
import { Table, TableBody, TableCell, TableHead, TableRow, TableContainer, Box, 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/"
Expand Down Expand Up @@ -97,7 +97,7 @@ export default function ItemTable({ data, rowCanBeSelected, loading }) {
</Box>
)
: (
<TableContainer component={Paper}>
<TableContainer>
<Table
{...getTableProps}
aria-label="Table of Queue Items"
Expand Down

0 comments on commit 8eeca75

Please sign in to comment.