REFACTOR Clean up app.js by removing console logs and ensuring menuInit is called on window load

This commit is contained in:
Antoine 2025-05-12 16:08:00 +02:00
parent 2da33f7c82
commit 3a9b51c651

View File

@ -1,6 +1,6 @@
import menuInit from './header'; import menuInit from './header';
console.log('menuInit'); import initSwiper from './swiper';
console.log('menuIniteeeee');
window.addEventListener('load', function () { window.addEventListener('load', function () {
menuInit(); menuInit();
}); });