How to solve radio input type select one

Hi @juwel445,

Thanks for the follow-up.

Could you ensure that you’re using unique names as mentioned in our Support Guide for the inputs. Looks like currently all the radio buttons are using name="project". If you could instead give each input unique name and let us know if you’re still having the same issue.

  1. Every input in the form must have a unique “name” attribute . Something like <input name="email" ...> or <textarea name="message" ...> is what you need. The name is sent along with the value in the submission and our API will only record data from form submissions with names matching the definition as parsed at deploy time.