diff --git a/chainkeeper_app/src/components/BlockPage.js b/chainkeeper_app/src/components/BlockPage.js index 2349769..e97b9e9 100644 --- a/chainkeeper_app/src/components/BlockPage.js +++ b/chainkeeper_app/src/components/BlockPage.js @@ -21,7 +21,7 @@ class BlockPage extends Component { componentDidMount() { this.setState({ isLoading: true }); - let openVal = parseInt(this.props.match.params.id); + let openVal = parseInt(this.props.match.params.id,10); fetch("http://192.248.22.171:8080/blocksci/api/v5/block/"+openVal) .then(response => response.json()) diff --git a/chainkeeper_app/src/components/LoginwithGoogle.js b/chainkeeper_app/src/components/LoginwithGoogle.js index c54c37e..5e35267 100644 --- a/chainkeeper_app/src/components/LoginwithGoogle.js +++ b/chainkeeper_app/src/components/LoginwithGoogle.js @@ -45,7 +45,7 @@ class LoginwithGoogle extends Component { }; return (
- imageClick()} /> + google login imageClick()} />
); }