Remove console.log

This commit is contained in:
prototypa
2022-08-19 23:45:37 -04:00
parent 577eb96663
commit f3afc2b28c

View File

@ -17,9 +17,7 @@ const {} = Astro.props;
const matches = document.querySelectorAll(selector); const matches = document.querySelectorAll(selector);
console.log(matches); console.log(matches);
if (matches && matches.length) { if (matches && matches.length) {
console.log("Hello");
matches.forEach((elem) => { matches.forEach((elem) => {
console.log(elem);
elem.addEventListener( elem.addEventListener(
event, event,
function () { function () {