Fixing linting

This commit is contained in:
Nicolas Gotchac 2016-11-11 12:41:44 +01:00
parent b59df1d7b8
commit deaf863c9e

View File

@ -267,7 +267,7 @@ export default class DetailsStep extends Component {
const label = `${input.name ? `${input.name}: ` : ''}${input.type}`; const label = `${input.name ? `${input.name}: ` : ''}${input.type}`;
const value = params[index]; const value = params[index];
const error = paramsError[index]; const error = paramsError[index];
const param = parseAbiType(input.type) const param = parseAbiType(input.type);
return ( return (
<div key={ index } className={ styles.funcparams }> <div key={ index } className={ styles.funcparams }>