Hide Data in URL after submission in custom React Form in Framer
I always used this custom form but never noticed it was displaying the data in the url. I’m launching ads and FB has warned me about this. I tried to fix it but I know nothing about React.
empty formData object when submitting form in React
const teams = [ { “conference”: “Eastern”, “division”: “Atlantic” }, { “conference”: “Eastern”, “division”: “Central” }, { “conference”: “Eastern”, “division”: “Southeast” }, { “conference”: “Western”, “division”: “Northwest” }, { “conference”: “Western”, “division”: “Pacific” }, { “conference”: “Western”, “division”: “Southwest” } ] export default function Demo3() { const [conference, setConference] = useState(“Western”); const [division, setDivision] = […]