diff --git a/src/components/Scrollable/Scrollable.tsx b/src/components/Scrollable/Scrollable.tsx index 4a1602c3571..cbdb3b58851 100644 --- a/src/components/Scrollable/Scrollable.tsx +++ b/src/components/Scrollable/Scrollable.tsx @@ -160,7 +160,7 @@ export class Scrollable extends Component { const shouldTopShadow = Boolean(shadow && scrollTop > 0); const canScroll = scrollHeight > clientHeight; - const hasScrolledToBottom = scrollHeight - scrollTop === clientHeight; + const hasScrolledToBottom = scrollHeight - scrollTop <= clientHeight; if (canScroll && hasScrolledToBottom && onScrolledToBottom) { onScrolledToBottom();