Skip to content

Commit

Permalink
fix: fix checkbox group (#74)
Browse files Browse the repository at this point in the history
fix checkbox group
  • Loading branch information
rianmandala authored Dec 16, 2024
1 parent 9de9c33 commit b07c38f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.11.2",
"version": "0.11.3",
"command": {
"version": {
"message": "chore(release): publish %s"
Expand Down
2 changes: 1 addition & 1 deletion packages/apsara-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goto-company/icons",
"version": "0.11.2",
"version": "0.11.3",
"description": "Apsara icons",
"scripts": {
"build": "node scripts/build.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/apsara-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@goto-company/apsara",
"version": "0.11.2",
"version": "0.11.3",
"description": "A list of base components for apsara",
"author": "Praveen Yadav <[email protected]>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/apsara-ui/src/Checkbox/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@ const CheckboxGroup = ({

Checkbox.displayName = "Checkbox";

const CompoundCheckbox = Object.assign(Checkbox, { CheckboxGroup });
const CompoundCheckbox = Object.assign(Checkbox, { Group: CheckboxGroup });

export default CompoundCheckbox;

0 comments on commit b07c38f

Please sign in to comment.