Add tagged products to my Customer/Account.Liquid

Hello,

I would like to add a section to my Customer/Account.Liquid to display tagged products (TAG that match customer account id).

I have added this part of code directly to Customer/Account.Liquid (maybe the error comes from there?) but it does not change anything to customer account although I have tagged the products with the Id code of the customer account connected.

{% for product in collection.products %}

{% if product.tags contains customer.id %}

{% include ‘product-card-grid’, max_height: max_height %}

{% endif %}

{% endfor %}

Can you help me please? Should I create a separate template (and not embed it directly into Customer/Account.Liquid)? Is the code above adapted to my theme ?

Here is my site if you want to check the code used: www.circularclothingparis.com

Thank you very much for your help !!!

Magali