Shopify Liquid store_availability is empty

@Sebastian_Young Sure, But to clarify beforehand, I am working on a pet project, on my own. Not part of any in-business service. I am exploring and learning the feature myself.

{% if variant.available %}
  {% if variant.inventory_quantity <= 0 and variant.inventory_policy == "continue" %}
    {{ block.settings.backorder_message }}

  {% else %}
    
      {{ block.settings.in_stock_message | replace: "number", variant.inventory_quantity }}
    

  {% endif %}
  
  

**Available in Locations:**

  
    {% for stock in variant.store_availabilities %}
      {% if stock.available and stock.pick_up_enabled %}
        - {{ stock.location.city }}
      {% endif %}
    {% endfor %}
  

{% else %}
  {{ block.settings.out_of_stock_message }}

{% endif %}

For Live preview, please visit: https://test-mohiuddin-2.myshopify.com/products/availability-test