Skip to content

Commit 624d59b

Browse files
committed
fix(AccordionItem): fix rebase issues
1 parent b2dec8f commit 624d59b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/AccordionItem.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,11 @@ export default class AccordionItem extends React.Component<Props> {
4141
};
4242

4343
render(): JSX.Element {
44-
const { uuid = this.instanceUuid, dangerouslySetExpanded } = this.props;
44+
const {
45+
uuid = this.instanceUuid,
46+
dangerouslySetExpanded,
47+
...rest
48+
} = this.props;
4549

4650
if (rest.id) {
4751
assertValidHtmlId(rest.id);

0 commit comments

Comments
 (0)