Skip to content

Commit

Permalink
[@mantine/core] ScrollArea: Fix onTopReached prop not being passed …
Browse files Browse the repository at this point in the history
…down in ScrollArea.Autosize component (#6747)
  • Loading branch information
zrll12 authored Sep 25, 2024
1 parent 2ee78ab commit 5896d46
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ export const ScrollAreaAutosize = factory<ScrollAreaFactory>((props, ref) => {
style,
vars,
onBottomReached,
onTopReached,
...others
} = useProps('ScrollAreaAutosize', defaultProps, props);

Expand All @@ -235,6 +236,7 @@ export const ScrollAreaAutosize = factory<ScrollAreaFactory>((props, ref) => {
vars={vars}
scrollbars={scrollbars}
onBottomReached={onBottomReached}
onTopReached={onTopReached}
>
{children}
</ScrollArea>
Expand Down

0 comments on commit 5896d46

Please sign in to comment.