Skip to content

Commit

Permalink
fix(structured-list): remove border from other
Browse files Browse the repository at this point in the history
  • Loading branch information
tw15egan committed Mar 11, 2020
1 parent 48785ac commit 8817e43
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@ export class StructuredListWrapper extends Component {
};

render() {
const { children, selection, className, ariaLabel, ...other } = this.props;
const {
children,
selection,
className,
ariaLabel,
border: _border,
...other
} = this.props;

const classes = classNames(`${prefix}--structured-list`, className, {
[`${prefix}--structured-list--selection`]: selection,
Expand Down

0 comments on commit 8817e43

Please sign in to comment.