diff --git a/src/react-next-paging.js b/src/react-next-paging.js index 8e1336c..ebeb000 100644 --- a/src/react-next-paging.js +++ b/src/react-next-paging.js @@ -148,9 +148,6 @@ class ReactNextPaging extends React.Component { let { itemsperpage } = this.props; let newinitialitem = (nextpage - 1) * itemsperpage; let newlastitem = nextpage * itemsperpage; - // console.log( - // `computeFwdLimits() newinitialitem: ${newinitialitem} newlastitem: ${newlastitem}` - // ); return { newinitialitem, newlastitem }; };