Commit e42ae81d authored by Lyza Danger Gardner's avatar Lyza Danger Gardner Committed by Lyza Gardner

Update shared components in AnnotationUser

parent 1307e466
import { Link } from '@hypothesis/frontend-shared'; import { LinkBase } from '@hypothesis/frontend-shared/lib/next';
/** /**
* @typedef AnnotationUserProps * @typedef AnnotationUserProps
...@@ -17,9 +17,9 @@ function AnnotationUser({ authorLink, displayName }) { ...@@ -17,9 +17,9 @@ function AnnotationUser({ authorLink, displayName }) {
if (authorLink) { if (authorLink) {
return ( return (
<Link href={authorLink} target="_blank"> <LinkBase href={authorLink} target="_blank">
{user} {user}
</Link> </LinkBase>
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment