Skip to content

Commit 54f3e2e

Browse files
Remove import tracking from Notificaiton Tab
1 parent 630b75a commit 54f3e2e

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,15 +182,13 @@ workflows:
182182
branches:
183183
only:
184184
- develop
185-
- ga-hotfix
186185
# This is beta env for production soft releases
187186
- "build-prod-beta":
188187
context : org-global
189188
filters:
190189
branches:
191190
only:
192191
- develop
193-
- ga-hotfix
194192
# Production builds are exectuted
195193
# when PR is merged to the master
196194
# Don't change anything in this configuration

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)