1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

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.
This commit is contained in:
Mark Stacey 2020-12-09 17:02:38 -03:30 committed by GitHub
parent 8ab5230115
commit 6304ce15a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
}