Skip to content

Commit

Permalink
Removed duplicate columns in ItemTable
Browse files Browse the repository at this point in the history
  • Loading branch information
wrigh393 committed Feb 8, 2021
1 parent 9b0a11d commit ecc3105
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/ItemTable/ItemTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,7 @@ export default function ItemTable({ data, rowCanBeSelected }) {
{ Header: 'Department', accessor: 'department' },
{ Header: 'Building', accessor: 'building' },
{ Header: 'Date Received', accessor: 'dateReceived', sortInverted: true, Cell: ({ value }) => <RelativeTime value={value} /> },
{ Header: 'Last Updated', accessor: 'lastUpdated', },
{ Header: 'Department', accessor: 'department' },
{ Header: 'Building', accessor: 'building' },
{ Header: 'Date Received', accessor: 'dateReceived', },

], []);
const tableInstance = useTable(
{
Expand Down

0 comments on commit ecc3105

Please sign in to comment.