// Wait until the DOM is fully loaded
document.addEventListener('DOMContentLoaded', function () {
// Re-enable scrolling if any script tries to disable it
document.body.style.overflowY = 'auto';
// You can also add any specific fixes here if you know which add-on is causing the conflict.
});