* `v3-infinite-loading@1.2.2` I was caught on an issue: When the page was mounted, not every time the `@infinite` event was called. After I added `console.log` to the IntersectionObserver callback, I found that the `entries` param was an array with 2 items. <img width="1028" alt="image" src="https://github.com/user-attachments/assets/379b26d9-1d02-4ebf-bb27-6cf5ae278554"> But the code shows that only first item of `entries` is used. Why ? https://github.com/oumoussa98/vue3-infinite-loading/blob/089119fcfe75d18d406737707fcddd5adc49326a/src/utils.ts#L34 Shouldn't this code be like: ```javascript const entry = entries.at(-1); ```