I have used Javascript to update the widget's email as we know it within the application, however when I try to submit the values have not been validated therefore the input has an outline as if it is empty, does the widget not verify values of inputs until a user has interacted with the input?
For reference I am adding in default summary and Email like below
iframe.current.contentDocument?.querySelector("#email");
if (emailInput && user) {
emailInput.value = ` ${user.email} \n`;
}But as you can see from the photo it is suggesting I need to input something into the input
