8 lines
224 B
JavaScript
Raw Normal View History

2025-04-09 11:49:01 +02:00
document.addEventListener('DOMContentLoaded', function () {
const pronounField = document.querySelector('[data-profile-field="pronouns"]');
if (pronounField) {
pronounField.style.display = 'none';
}
});