Skip to content

Commit f0532a0

Browse files
Merge pull request #4356 from topcoder-platform/ga-hotfix
ga-hotfix
2 parents e924ba1 + e274f66 commit f0532a0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/shared/components/Notifications/TabsPanel/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import cn from 'classnames';
4-
import { tracking } from 'topcoder-react-lib';
54
import styles from './style.scss';
65

76

@@ -21,7 +20,7 @@ export default class TabsPanel extends React.Component {
2120

2221

2322
render() {
24-
const { changeTab } = this.props;
23+
const { changeTab, tracking } = this.props;
2524
const { tab } = this.state;
2625
return (
2726
<div className={styles.container}>
@@ -106,4 +105,5 @@ export default class TabsPanel extends React.Component {
106105

107106
TabsPanel.propTypes = {
108107
changeTab: PropTypes.func.isRequired,
108+
tracking: PropTypes.shape().isRequired,
109109
};

src/shared/components/Notifications/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ export default class NotificationList extends React.Component {
184184
<div className={styles['notifications-panel']}>
185185
<TabsPanel
186186
changeTab={tab => this.setState({ activeTab: tab })}
187+
tracking={tracking}
187188
/>
188189
<div className={styles['noti-body']}>
189190
<Fragment key="nonComplete">

0 commit comments

Comments
 (0)