When using typeform embedded form on my website I get two console log errors.
POST https://form.typeform.com/forms/<my_form_id>/insights/events/v3/view-form-open net::ERR_CONNECTION_RESET
TypeError: Failed to fetch
The form opens up okay but I want to solve these errors.
Here is the react component
import { SliderButton } from '@typeform/embed-react'
const Typeform = () => {
const buttonStyle = {
padding: '10px 20px',
borderRadius: 4,
border: 'none',
background: '#2e0553',
color: 'white',
fontSize: 16,
cursor: 'pointer',
}
return (
<SliderButton id="xxxxxxxx" style={buttonStyle}>
Subscribe Now
</SliderButton>
)
};
export default Typeform;
I’ve tried using the plugin - https://www.npmjs.com/package/@typeform/embed-react
and using the tool from typeform share tab, both have the same issue.