Explorar el Código

remove unnecessary logs

kaori hace 5 años
padre
commit
3ebb5e0ddb
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  1. 1 3
      src/client/js/components/MyBookmarkList/MyBookmarkList.jsx

+ 1 - 3
src/client/js/components/MyBookmarkList/MyBookmarkList.jsx

@@ -100,12 +100,10 @@ class MyBookmarkList extends React.Component {
 
 
   render() {
-    console.log(`pages = ${this.state.pages}`);
-    console.log(`activePage = ${this.state.activePage}`);
     return (
       <>
         <div className="page-list-container-create">
-          {this.state.pages === 0 ? this.renderNoBookmarkList() : this.renderBookmarkList()}
+          {this.state.totalPage === 0 ? this.renderNoBookmarkList() : this.renderBookmarkList()}
         </div>
       </>
     );