I'm using a public airtable view with a button that passes data to a web form. Works on desktop but not on mobile.
looks like this:
ENCODE_URL_COMPONENT({Deal Name}) & 
"&new=" & 
ENCODE_URL_COMPONENT({Current Bid Value}) & 
"&id=" & 
ENCODE_URL_COMPONENT(DealID)
I had to flatten a lookup cell and turn it into {Current Bid Value}, which works. But for some reason on mobile it clears the query string. It should pass something like this: https://myurl.com/bid/?bid=Joel&new=120000&id=recaAB2Q4b8H2iYgL 
Instead of: https://myurl.com/bid/ any suggestions?
