Skip to content

Commit

Permalink
fix: selectable box set props forwarding
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxFrank13 committed Jul 20, 2023
1 parent f029e8e commit ed75308
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/SelectableBox/SelectableBoxSet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const SelectableBoxSet = React.forwardRef(({
type,
columns,
className,
...props
}, ref) => {
const inputType = getInputType('SelectableBoxSet', type);

Expand All @@ -35,6 +36,7 @@ const SelectableBoxSet = React.forwardRef(({
`pgn__selectable_box-set--${columns || DEFAULT_COLUMNS_NUMBER}`,
className,
),
...props,
},
children,
);
Expand Down

0 comments on commit ed75308

Please sign in to comment.