Skip to content

Commit

Permalink
fix: disabled 없애기
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene028 committed Jul 20, 2024
1 parent c8bdcc8 commit 4579454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wow-ui/src/components/Chip/Chip.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe("Chip toggle Test", () => {
describe("Chip disabled Test", () => {
let renderChip: RenderResult;
beforeEach(() => {
renderChip = render(<Chip as="button" disabled={true} label="Chip" />);
renderChip = render(<Chip disabled={true} label="Chip" />);
});

it("should render with attributes aria-disabled to be true", () => {
Expand Down

0 comments on commit 4579454

Please sign in to comment.