Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinvanschoren committed Nov 13, 2023
1 parent 7bdaebc commit 7affe14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/components/TableView.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function TableView() {
rowLength: 100000,
editable: true,
});

console.log(data);
return (
<Box sx={{ height: "100vh", width: "100%" }}>
<DataGrid
Expand Down
2 changes: 1 addition & 1 deletion app/src/components/search/SearchContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const PagingInfoView = ({ start, end, totalResults }) => (
</Box>
);

const PagingView = ({ current, resultsPerPage, totalPages, onChange }) => (
const PagingView = ({ current, totalPages, onChange }) => (
<Pagination
count={totalPages}
color="primary"
Expand Down

0 comments on commit 7affe14

Please sign in to comment.