Skip to content

Commit

Permalink
Remove activeTabs prop from Tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
kgabryje committed Oct 7, 2021
1 parent b2818d0 commit 8db4e56
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const propTypes = {
editMode: PropTypes.bool.isRequired,
renderHoverMenu: PropTypes.bool,
directPathToChild: PropTypes.arrayOf(PropTypes.string),
activeTabs: PropTypes.arrayOf(PropTypes.string),

// actions (from DashboardComponent.jsx)
logEvent: PropTypes.func.isRequired,
Expand All @@ -74,7 +73,6 @@ const defaultProps = {
availableColumnCount: 0,
columnWidth: 0,
directPathToChild: [],
activeTabs: [],
setActiveTabs() {},
onResizeStart() {},
onResize() {},
Expand Down Expand Up @@ -407,7 +405,6 @@ function mapStateToProps(state) {
return {
nativeFilters: state.nativeFilters,
directPathToChild: state.dashboardState.directPathToChild,
activeTabs: state.dashboardState.activeTabs,
};
}
export default connect(mapStateToProps)(Tabs);

0 comments on commit 8db4e56

Please sign in to comment.