remove unneded else

This commit is contained in:
Iuri Matias 2018-08-23 16:23:00 -04:00
parent 65d3d5c1e9
commit ba4510fa17
1 changed files with 1 additions and 2 deletions

View File

@ -81,7 +81,7 @@ class App extends React.Component {
<div>Something went wrong connecting to ethereum. Please make sure you have a node running or are using metamask to connect to the ethereum network:</div>
<div>{this.state.error}</div>
</div>);
} else {
}
return (<div>
<h3>Embark - Usage Example</h3>
<Tabs onSelect={this.handleSelect} activeKey={this.state.activeKey} id="uncontrolled-tab-example">
@ -99,7 +99,6 @@ class App extends React.Component {
</Tab>
</Tabs>
</div>);
}
}
}