Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed Aug 16, 2023
1 parent 3b115df commit c4dad59
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/tutorials/contacts.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,15 @@ export default function Contact() {
<Favorite contact={contact} />
</h1>

{contact.twitter ? <p>
{contact.twitter ? (
<p>
<a
href={`https://twitter.com/${contact.twitter}`}
>
{contact.twitter}
</a>
</p> : null}
</p>
) : null}

{contact.notes ? <p>{contact.notes}</p> : null}

Expand Down Expand Up @@ -372,7 +374,9 @@ export default function Root() {
) : (
<i>No Name</i>
)}{" "}
{contact.favorite ? <span></span> : null}
{contact.favorite ? (
<span></span>
) : null}
</Link>
</li>
))}
Expand Down

0 comments on commit c4dad59

Please sign in to comment.