'expected String to be a Hash: properties SHOPIFY

trying to add a custom text box field for customers to write text on product in Shopify

Keep getting this error message when trying to add the item to cart

expected String to be a Hash: properties

can someone help please

this is the code i have entered

    <div> 
      <label for="custom-name">Your Name</label>
      
      <input type="text" id="custom-name" form="{{product_form_id}}" name="properties"[Your Name] />
    
    </div>


Solution 1:[1]

Close quotation mark after the bracket – <input type="text" id="custom-name" form="{{product_form_id}}" name="properties[Your Name]" />

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Yurii