Why does this liquid in the packing slip template
{% for tag in order.tags %}
{% if tag != 'wholesale' %}
B2C
{% else %}
B2B
{% endif %}
{% endfor %}
Result in
B2C
B2C
when i print packing slip from a order that does not include the tag wholesale?
If i print packing slip from order with wholesale tag it prints B2B one time.