Hey there.
I just realized that the form fields capture information on mac but not windows.
I think I've narrowed down the problem, but unsure how to get over it. On windows, I see this "Insecure content blocked" notification at the top right of my screen. (See screenshots below)
Has anyone faced this already? Any direction would be helpful thanks!


My guess is this is because some content is HTTP and other is HTTPS? The browser's javascript console might have more detail.
Hmm how would I change this content to be under HTTPS?
vendor-ga.js:13429 Mixed Content: The page at 'https://x.com/thankyou/' was loaded over HTTPS, but attempted to connect to the insecure WebSocket endpoint 'ws://x.com:9485/'. This request has been blocked; this endpoint must be available over WSS.
This is error that I received.
The error is hinting at what you need to do. You are loading resources via HTTPS which is a secure transfer method. Resources over websockets must also be secure, so use WSS.
In your case this should be wss://x.com:9485/.
Most helpful comment
My guess is this is because some content is HTTP and other is HTTPS? The browser's javascript console might have more detail.