From 1b5ee8a1f165787fbf6b52b60e976abc0b205fed Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Thu, 17 May 2018 11:09:52 -0400 Subject: [PATCH] cleaned up console logs --- .../src/components/table/transactions/transactionDetailsRow.js | 1 - .../src/components/table/transactions/transactionTable.js | 1 - shyftBlockExplorerUI/src/containers/App.js | 2 -- 3 files changed, 4 deletions(-) diff --git a/shyftBlockExplorerUI/src/components/table/transactions/transactionDetailsRow.js b/shyftBlockExplorerUI/src/components/table/transactions/transactionDetailsRow.js index 1ce7db2ac8..889bb3e33f 100644 --- a/shyftBlockExplorerUI/src/components/table/transactions/transactionDetailsRow.js +++ b/shyftBlockExplorerUI/src/components/table/transactions/transactionDetailsRow.js @@ -5,7 +5,6 @@ class DetailTransactionTable extends Component { render() { let data = this.props.data - console.log(data) let combinedClasses = ['responsive-table', classes.table]; return ( diff --git a/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js b/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js index 2d3210b60c..3f6c4d9fc2 100644 --- a/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js +++ b/shyftBlockExplorerUI/src/components/table/transactions/transactionTable.js @@ -4,7 +4,6 @@ import arrow from '../../assets/arrow_right.png'; import { Link } from 'react-router-dom' const TransactionTable = (props) => { - console.log(props) return ( diff --git a/shyftBlockExplorerUI/src/containers/App.js b/shyftBlockExplorerUI/src/containers/App.js index b794f9283f..6029f37e68 100644 --- a/shyftBlockExplorerUI/src/containers/App.js +++ b/shyftBlockExplorerUI/src/containers/App.js @@ -32,10 +32,8 @@ class App extends Component { } detailTransactionHandler = async(txHash) => { - console.log("THIS RAN") try { const response = await axios.get(`http://localhost:8080/api/get_transaction/${txHash}`) - console.log("THIS IS RESPONSE", response) await this.setState({ transactionDetailData: response.data }) } catch(error) {