fix(app): missing alt prop for img tag

This commit is contained in:
nikrb
2018-12-03 11:41:28 +00:00
committed by Stuart Taylor
parent 4fe5c81ad4
commit 835f48e044

View File

@ -46,7 +46,7 @@ function Author({ article }) {
<Helmet>
<style>{styles}</style>
</Helmet>
<img height='50px' src={avatar} />
<img alt='' height='50px' src={avatar} />
<div className='author-bio'>
<ArticleMeta article={article} />
</div>