Hidden Elements on Mobile

OK, we’re investigating the issues.
in the meantime, here’s a short code snippet to check if you run or mobile or desktop:

import wixWindow from 'wix-window'; 
 
let formFactor = wixWindow.formFactor; // can be either "Mobile" or "Desktop"

if (formFactor === "Mobile")
{
 //do some mobile only code
}
else
{
 //do some desktop only code
}

hope this helps.