add dockerfile

This commit is contained in:
john 2025-05-18 01:30:54 +02:00
parent dcaccc7ab8
commit abd7c2f073
4 changed files with 33 additions and 1 deletions

View file

@ -48,7 +48,7 @@ export function useIntersectionLoad(
observerRef.current = new IntersectionObserver(
(entries) => {
const entry = entries[0]
if (entry.isIntersecting) {
if (entry?.isIntersecting) {
debouncedCallback()
}
},