Skip to content

Commit

Permalink
Remove Paper from ItemHeaderView
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Apr 22, 2021
1 parent 7d57ef9 commit 342db23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ItemHeaderView/ItemHeaderView.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useMemo } from "react";
import PropTypes from "prop-types";
import { useTable, useFlexLayout, useFilters } from "react-table";
import { TableContainer, Paper, Table, TableHead, TableRow, TableCell, TableBody, TextField, useTheme, makeStyles } from "@material-ui/core";
import { TableContainer, Table, TableHead, TableRow, TableCell, TableBody, TextField, useTheme, makeStyles } from "@material-ui/core";

export default function ItemHeaderView({ data }) {

Expand Down Expand Up @@ -51,7 +51,7 @@ export default function ItemHeaderView({ data }) {
} = tableInstance;

return (
<TableContainer component={Paper}>
<TableContainer>
<Table {...getTableProps} size="small">
<TableHead>
{headerGroups.map(headerGroup => (
Expand Down

0 comments on commit 342db23

Please sign in to comment.