diff --git a/frontend/src/components/TicketsList/index.js b/frontend/src/components/TicketsList/index.js index abd1b28..37e5de5 100644 --- a/frontend/src/components/TicketsList/index.js +++ b/frontend/src/components/TicketsList/index.js @@ -263,6 +263,7 @@ const reducer = (state, action) => { const { scrollTop, scrollHeight, clientHeight } = e.currentTarget; if (scrollHeight - (scrollTop + 100) < clientHeight) { + e.currentTarget.scrollTop = scrollTop - 100; loadMore(); } };