How to remove unwanted marks in the Debut Theme's main page corner?

Hi! on the main page in the top left corner I have these little marks. How do I get rid of this??

tattoosh_0-1637335241994.png

What’s the address of your store? If you have a storefront password set under Online store >> Preferences, please post that here too or disable it, otherwise we can’t see your storefront. (NOTE: Do NOT post your admin password here, only the storefront password).

There are two HTML tags in the code that end with an incorrect ">, you’ll probably find them in Layout/theme.liquid:

">

">

Delete the "> at the end of each one and that should solve it.

Which one do I take out?

{%- if settings.favicon != blank -%}

{%- endif -%}

{%- capture seo_title -%}
{%- if template == ‘search’ and search.performed == true -%}
{{ ‘general.search.heading’ | t: count: search.results_count }}: {{ ‘general.search.results_with_count’ | t: terms: search.terms, count: search.results_count }}
{%- else -%}
{{ page_title }}
{%- endif -%}
{%- if current_tags -%}
{%- assign meta_tags = current_tags | join: ', ’ -%} – {{ ‘general.meta.tags’ | t: tags: meta_tags -}}
{%- endif -%}
{%- if current_page != 1 -%}
– {{ ‘general.meta.page’ | t: page: current_page }}
{%- endif -%}
{%- assign escaped_page_title = page_title | escape -%}
{%- unless escaped_page_title contains shop.name -%}
– {{ shop.name }}
{%- endunless -%}
{%- endcapture -%}

{{ seo_title | strip }}

{%- if page_description -%}

{%- endif -%}

{% include ‘social-meta-tags’ %}

{{ ‘theme.scss.css’ | asset_url | stylesheet_tag }}

The tags are probably being included from /snippets/social-meta-tags.liquid

Thank you!!!