Hello,
I have a netlify form on my website https://learningloop.com and a function that sends new sign ups to our marketing automation tool by triggering a netlify function. after i added the netlify function trigger to the button action, the form stopped submitting new inputs to netlify. the function works as expected.
my code (minus the tailwind styles)
<form name="sign-up" action="/.netlify/functions/drip-tagging" method="POST" netlify>
<input type="email" name="email" placeholder="Your company email" required />
<button type="submit" >Join</button>
</form>
this is also causing recaptcha to become optional (got tons of bot sign ups who sign up without checking recaptcha box)
any thoughts on how i can better implement this?