StarvingMartist@sh.itjust.works to Mildly Infuriating@lemmy.worldEnglish · 8 months agoFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksimagemessage-square18linkfedilinkarrow-up175arrow-down10file-text
arrow-up175arrow-down1imageFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksStarvingMartist@sh.itjust.works to Mildly Infuriating@lemmy.worldEnglish · 8 months agomessage-square18linkfedilinkfile-text
minus-squareunderisk@lemmy.mllinkfedilinkEnglisharrow-up2·8 months agosounds like contentEditable got triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console: document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);
sounds like
contentEditablegot triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console:document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);