Open
Description
Hi, the afterScroll is not firing for me, any tips ?
<VirtualList
width="100%"
height={400}
itemCount={$messages.length}
itemSize={92}
{scrollOffset}
{scrollToBehaviour}
on:afterScroll={() => console.log("well, hello there")}
>
<svelte:fragment slot="item" let:index let:style>
{@const message = $messages[index]}
<div class="flex gap-x-6 px-8 py-6 relative" {style}>
// thingy
</div>
</svelte:fragment>
</VirtualList>