fix(instant): fix tabIndex attribute error

This commit is contained in:
Brandon Millman
2018-11-14 14:02:34 -08:00
parent daf5719f08
commit 504f4d9eb9
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ export class ERC20TokenSelector extends React.Component<ERC20TokenSelectorProps>
width="100%"
value={this.state.searchQuery}
onChange={this._handleSearchInputChange}
tabindex={-1}
tabIndex={-1}
/>
<Container overflow="scroll" height="calc(100% - 90px)" marginTop="10px">
{_.map(tokens, token => {