Fix TokenList component name (#10030)

The TokenList component on the `add-token` page had the name `InfoBox`,
which doesn't seem applicable. It has been renamed to `TokenList`, to
match the module filename and the component name we use elsewhere.
feature/default_network_editable
Mark Stacey 4 years ago committed by GitHub
parent 8ab5230115
commit 6304ce15a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/app/pages/add-token/token-list/token-list.component.js

@ -4,7 +4,7 @@ import classnames from 'classnames'
import { checkExistingAddresses } from '../../../helpers/utils/util'
import TokenListPlaceholder from './token-list-placeholder'
export default class InfoBox extends Component {
export default class TokenList extends Component {
static contextTypes = {
t: PropTypes.func,
}

Loading…
Cancel
Save