Skip to content

Commit

Permalink
fix: change text from light to remote node in network dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Oct 29, 2018
1 parent 5fc0bfc commit ad962b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/layout/Header/Status/networkSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Networks, findNetwork } from '../../../../lib/networks';
class ExtendedMenuItem extends React.Component {
render() {
const {muiTheme, checked, onClick, net} = this.props;
const networkType = net.geth.type === 'local' ? 'Full Node' : 'Light Node';
const networkType = net.geth.type === 'local' ? 'Full Node' : 'Remote Node';
const textColor = checked ? muiTheme.palette.primary1Color : muiTheme.palette.secondaryTextColor;
return (
<div
Expand Down

0 comments on commit ad962b6

Please sign in to comment.