Hi
As per subject, I'm unable to toggle the email option in the notification settings, when I try, only the notification option gets selected, not the email. How can I enable email notifications?
Lol that's a weird bug, submit a bug report support hub request😎
The issue is that the switches both have the sams ids So by just changing the email switches' ids to be something different it works
Here is javascript that changes that and fixes the bug document.querySelectorAll("td.email").forEach(emailCell => { const input = emailCell.querySelector("input") input.id += "email" emailCell.querySelector("label").setAttribute("for", input.id) }) 
Hello, I'm also experiencing this issue in both FireFox and Chrome, has anyone had luck in a different browser?