fix(share): 🐛 incorrect debounce parameter assignment

This commit is contained in:
alistair3149 2024-07-07 17:40:37 -04:00
parent 55b310d26d
commit e9fd488cee
No known key found for this signature in database

View file

@ -50,7 +50,7 @@ function init() {
}
};
button.addEventListener( 'click', mw.util.debounce( 100, handleShareButtonClick ) );
button.addEventListener( 'click', mw.util.debounce( handleShareButtonClick, 100 ) );
}
module.exports = {