fix(platform): added alt text to user image (#18316)

This commit is contained in:
Dan Hogan
2018-10-11 15:17:35 -04:00
committed by mrugesh mohapatra
parent b405afff43
commit e88e9b034b

View File

@ -13,7 +13,7 @@ const mapStateToProps = createSelector(userSelector, ({ picture }) => ({
function SignedIn({ picture }) {
return (
<Link to='/settings'>
<img alt='' height='38px' src={picture} />
<img alt='your user image' height='38px' src={picture} />
</Link>
);
}