Skip to content

Commit

Permalink
[ScrollArea] Fix types (radix-ui#2408)
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitgrelard authored Sep 25, 2023
1 parent 28bebf2 commit fadebe7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .yarn/versions/9471cb0c.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
releases:
"@radix-ui/react-scroll-area": patch

declined:
- primitives
2 changes: 1 addition & 1 deletion packages/react/scroll-area/src/ScrollArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ type ScrollAreaScrollbarImplPrivateProps = {
onResize(): void;
};
interface ScrollAreaScrollbarImplProps
extends PrimitiveDivProps,
extends Omit<PrimitiveDivProps, keyof ScrollAreaScrollbarImplPrivateProps>,
ScrollAreaScrollbarImplPrivateProps {}

const ScrollAreaScrollbarImpl = React.forwardRef<
Expand Down

0 comments on commit fadebe7

Please sign in to comment.