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) {