How can two metafields have the same value?

How can two metafields have the same value??

I print two metafields that are a pae template that is empty.

When I print both one being used and the other not they come out as exactly the same.

How can this be?

{{ product.metafields.custom.size_chart }}
{{ product.metafields.custom.made_to_order }}

{%- when 'popup' -%}
                {{ product.metafields.custom.size_chart }}
                {{ product.metafields.custom.made_to_order }}         
              {% comment %} MGO: Show Chart Table if not empty {% endcomment %}            
              {%- if product.metafields.custom.size_chart != blank -%}
                
                              
                
                  {{- block.settings.text -}}
                

                
              {% comment %} MGO: Show Non-Refundable if not empty {% endcomment %}            
              {%- elsif product.metafields.custom.made_to_order != blank -%}
                
                              
                
                  {{- block.settings.text -}}
                
            {%- endif -%}

Try using this

{{ product.metafields.custom.size_chart.value }}
{{ product.metafields.custom.made_to_order.value }}

Hi @miltokas
Please try this

{{ product.metafields.custom.size_chart.content }}
{{ product.metafields.custom.made_to_order.content }}

Thanks!