remove console.log form feed.js

This commit is contained in:
Gal Elmalah
2020-10-11 11:59:58 +03:00
committed by Vishnu Ks
parent a1fa7011cd
commit dd7b9b6efb

View File

@@ -10,8 +10,6 @@ export default ({ data, limit }) => {
.slice(0, limit || data.allBooksJson.edges.length)
.sort(compareFunctions[sortBy]);
console.log(getSortedBooks());
const handleSortByItemClick = (field) => {
setSortBy(field);
};