Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit 50fe466

Browse files
committed
Revert "Merge pull request #363 from nestoralonso/patch-3"
This reverts commit bb590a1, reversing changes made to aaff348.
1 parent bb590a1 commit 50fe466

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/visual-stack/src/components/SideNav/CategoryLabel.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ import React from 'react';
22
import './SideNav.css';
33

44
export const CategoryLabel = ({ children, collapsed, ...restProps }) => {
5-
const domProps = R.omit(['dispatch'], restProps);
6-
75
return (
86
!collapsed && (
9-
<div {...domProps} className="vs-category-label">
7+
<div {...restProps} className="vs-category-label">
108
{children}
119
</div>
1210
)

0 commit comments

Comments
 (0)