Remove console.log

This commit is contained in:
prototypa
2022-08-19 23:50:28 -04:00
parent f3afc2b28c
commit def1f7e1ff

View File

@ -15,7 +15,6 @@ const {} = Astro.props;
function attachEvent(selector, event, fn) { function attachEvent(selector, event, fn) {
const matches = document.querySelectorAll(selector); const matches = document.querySelectorAll(selector);
console.log(matches);
if (matches && matches.length) { if (matches && matches.length) {
matches.forEach((elem) => { matches.forEach((elem) => {
elem.addEventListener( elem.addEventListener(