Why does my mobile menu sub category parent link make products disappear?

Hello,

On my mobile nav i have a slideout drawer submenu and i have made the parent link and the toggle open it with the view to have the parent link showing at the top of the submenu. I have edited the code to show the parent link in the submenu and when clicked, it loads the page with products but then the products disappear.

The code below is for the submenu and the div of navigation__item is my parent link, have also added pics below. My site is https://sayitwithyoma.myshopify.com/ and the password is rtatse if you need to be able to see what i’m trying to achieve.


                

                    
                      {{- link.title -}}
                    
                  

                  
                    {% for child_link in link.links %}
                    - {{- child_link.title -}}
                      
                        {% if child_link.links != blank %}
                          {% render 'icon-toggle-menu', stroke_width: 1.3 %}
                        {% endif %}

                        {% if child_link.links != blank %}
                        

                          

                              {% for child_child_link in child_link.links %}
                              - {{ child_child_link.title }}
                            
                              {% endfor %}
                          
                        

                        {% endif %}
                    

                    {% endfor %}

                    {%- if promo_count > 0 -%}
                      - {{ menu_promotion_html }}
                      
                    {%- endif -%}
                  

                

All sorted