Skip to content

Commit

Permalink
Avoid referencing unbound method for CarouselProps
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrucs committed Sep 16, 2024
1 parent 793d220 commit 468292b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Carousel/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface CarouselProps {
children: React.ReactNode;
nextArrow: JSX.Element;
prevArrow: JSX.Element;
dots(dots: React.ReactNode): JSX.Element;
dots: (dots: JSX.Element) => JSX.Element;
}

interface LargeOrSmallCarouselProps {
Expand Down

0 comments on commit 468292b

Please sign in to comment.