Fixed syntax & linted

pull/682/head
Vincent 5 years ago
parent 533ec4eedc
commit f7fde304ab

@ -37,7 +37,7 @@ export class SessionIconButton extends React.PureComponent<Props> {
public render() { public render() {
const { iconType, iconSize } = this.props; const { iconType, iconSize } = this.props;
let iconPath = `./images/session/icon-${iconType}.svg`; const iconPath = `./images/session/icon-${iconType}.svg`;
return ( return (
<div <div
@ -53,7 +53,7 @@ export class SessionIconButton extends React.PureComponent<Props> {
role="button" role="button"
onClick={this.clickHandler} onClick={this.clickHandler}
> >
<img src={iconPath} /> <img src={iconPath} alt="" />
</div> </div>
); );
} }

Loading…
Cancel
Save