diff --git a/src/components/AuthorInfo/AuthorInfo.js b/src/components/AuthorInfo/AuthorInfo.js index b7441340..21ae8b66 100644 --- a/src/components/AuthorInfo/AuthorInfo.js +++ b/src/components/AuthorInfo/AuthorInfo.js @@ -1,6 +1,7 @@ import React, { PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import classNames from 'classnames'; +import { Avatar } from '../../components'; import * as propTypes from '../../util/propTypes'; import css from './AuthorInfo.css'; @@ -12,12 +13,11 @@ const AuthorInfo = props => { const authorName = currentAuthor.attributes.profile ? `${currentAuthor.attributes.profile.firstName} ${currentAuthor.attributes.profile.lastName}` : ''; - const authorAvatar = 'https://placehold.it/44x44'; return (