correction probleme typo

This commit is contained in:
Thibaud
2024-09-13 18:49:50 +02:00
parent b8ae268ee1
commit 16a3f92b70
@@ -7,7 +7,7 @@ const handleHeaderIntersection = function (entries) {
const section_header = document.querySelector("header");
if (section_header) {
const headerObserver = new IntersectionObserver(handleSynthesisIntersection);
const headerObserver = new IntersectionObserver(handleHeaderIntersection);
if (headerObserver) headerObserver.observe(section_header);
} else myLog('No header to observe');