Skip to content

Commit

Permalink
fix: Carousel Wrapper style객체 optional로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
d0422 committed Apr 14, 2024
1 parent b1e6f52 commit 6184d7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rapiders/react-hooks",
"version": "0.0.12",
"version": "0.0.13",
"description": "react hooks for fast development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/useCarousel/useCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import React, {

const CarouselWrapper = forwardRef(
(
{ children, style }: { children: ReactNode; style: React.CSSProperties },
{ children, style }: { children: ReactNode; style?: React.CSSProperties },
ref: ForwardedRef<HTMLDivElement>
) => (
<div style={{ overflow: 'hidden' }}>
Expand Down

0 comments on commit 6184d7f

Please sign in to comment.