Learn HTML by Building a Cat Photo App - Step 12

At step 12 and its telling me ¨The link’s href value should be https://freecatphotoapp.com. You have either omitted the href value or have a typo.¨ I have no idea what to do. Any help would be appreciated

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

<p>Click here to view more<a href="https://www.freecatphotoapp.com/">cat photos</a></p>
      <a href="https://freecatphotoapp.com">link to cat pictures</a>

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 12

Link to the challenge:

You have two links with different href values. I suspect you are only supposed to have one.

So how would that look like?

Instead of two links, there would only be one. The assignment probably describes exactly where the link is supposed to be and what the linked text should be.