From f9b81040aa625c4f1b6d35ee767dbce8840ce913 Mon Sep 17 00:00:00 2001 From: Rafael Mora Date: Sun, 3 Mar 2019 10:28:01 -0500 Subject: [PATCH] chore(update release on github): update release on github BREAKING CHANGE: update release on github --- src/react-next-paging.js | 3 --- 1 file changed, 3 deletions(-) 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 }; };