pull down to refresh
It seems it might be an error of wrong detection. Websites parse the user agent string and if the agent doesn't match the default is probably windows. Or it's trying to spoof it.
Try this on the browser console:
window.navigator.userAgent
See what it prints
"Mozilla/5.0 (X11; Linux x86_64; rv:135.0) Gecko/20100101 Firefox/135.0"
No windows anywhere. It's just the website you're frequenting wrongfully not parsing the string for Linux.
It might be a library they use (unlikely). Or simply bad programming. That's why we need good ones like me :D
It seems it might be an error of wrong detection. Websites parse the user agent string and if the agent doesn't match the default is probably windows. Or it's trying to spoof it.
Try this on the browser console:
window.navigator.userAgentSee what it prints