Section in custom menu

Hey. I have a menu whose items are written in the config file.
As soon as I added the blog section, this section itself appeared in the menu. How to remove it from there?

	{{- $currentPage := . -}}
    {{ range .Site.Menus.main -}}
						<li class="header_menu_item {{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
							<a class="{{ .Pre }}" target="{{ .Post }}" href="{{ .URL | relLangURL }}">{{ .Name }}</a>
						</li>
    {{- end }}

I decided the following way:

  1. In _index.md (the main page of the section) registered parameters

    Linktitle = "tittle"
    Weight = 6

  2. A duplicate item was removed from config.toml.

Although this is not entirely logical, it works.