로그 제거

This commit is contained in:
focp212@naver.com
2025-10-28 11:08:50 +09:00
parent 5bbef971e1
commit feaaac73f7
22 changed files with 22 additions and 100 deletions

View File

@@ -65,15 +65,11 @@ export const EscrowListPage = () => {
const onIntersect: IntersectionObserverCallback = (entries: Array<IntersectionObserverEntry>) => {
entries.forEach((entry: IntersectionObserverEntry) => {
if(entry.isIntersecting){
console.log('Element is now intersecting with the root. [' + onActionIntersect + ']');
if(onActionIntersect && !!pageParam.cursor){
setOnActionIntersect(false);
callList('page');
}
}
else{
console.log('Element is no longer intersecting with the root.');
}
});
};