Skip to content

Commit

Permalink
chore(react): fix unit test fail issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Achintha Isuru committed Jul 22, 2024
1 parent 4c92c0f commit 320fd6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/Chip/Chip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Chip: FC<ChipProps> & WithWrapperProps = <C extends ElementType>(props: Ch

const classes: string = clsx('oxygen-chip', className);

return <MuiChip className={classes} {...rest} variant="outlined" />;
return <MuiChip className={classes} {...rest} />;
};

Chip.displayName = composeComponentDisplayName(COMPONENT_NAME);
Expand Down

0 comments on commit 320fd6b

Please sign in to comment.