diff --git a/frontend/src/components/inbox/components/ConversationsList.tsx b/frontend/src/components/inbox/components/ConversationsList.tsx index fc0f388e..a47f8b11 100644 --- a/frontend/src/components/inbox/components/ConversationsList.tsx +++ b/frontend/src/components/inbox/components/ConversationsList.tsx @@ -57,10 +57,19 @@ export const SubscribersList = (props: { {subscribers?.length > 0 ? ( { + const container = target as HTMLDivElement; + + if ( + container.scrollTop + container.clientHeight >= + container.scrollHeight + ) { + handleLoadMore(); + } + }} > {subscribers.map((subscriber) => (