Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

remove unnecessary itemprops #998

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/atoms/BylineWithTwoLines.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ const BylineWithTwoLines = ({ src, name, email }) => (
/>
) : <WrapAvatar><SvgIcon name="user" /></WrapAvatar>}
<TextBlock primaryText={name}>
<Name itemProp="author" itemScope itemType="http://schema.org/Person">
<span itemProp="name">{name}</span>
<Name>
<span>{name}</span>
</Name>
<Email email={email}>
{email}
Expand Down