Skip to content

Commit

Permalink
Fix broken lints in example app
Browse files Browse the repository at this point in the history
  • Loading branch information
pawellula committed Jan 6, 2023
1 parent c325e71 commit d8007d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions examples/web-wagmi/src/profiles/components/ProfileCard.tsx
Expand Up @@ -10,9 +10,7 @@ type ProfileCardProps = {
export function ProfileCard({ profile }: ProfileCardProps) {
return (
<article>
<Link to={`/profile/handle/${profile.handle}`}>
<ProfilePicture picture={profile.picture} />
</Link>
<ProfilePicture picture={profile.picture} />
<p>Handle: {profile?.handle}</p>
<p>Name: {profile?.name}</p>
<p>Bio: {profile?.bio}</p>
Expand Down
Expand Up @@ -10,9 +10,7 @@ type PublicationProps = {
export function PublicationCard({ publication }: PublicationProps) {
return (
<article>
<Link to={`/profile/handle/${publication.profile.handle}`}>
<ProfilePicture picture={publication.profile.picture} />
</Link>
<ProfilePicture picture={publication.profile.picture} />
<p>{publication.profile.name ?? `@${publication.profile.handle}`}</p>
<p>{publication.metadata.content}</p>
</article>
Expand Down

0 comments on commit d8007d4

Please sign in to comment.