diff --git a/packages/patternfly-3/patternfly-react/src/components/Chart/BulletChart/BulletChart.js b/packages/patternfly-3/patternfly-react/src/components/Chart/BulletChart/BulletChart.js
index 26b01de71ed..2e93459b6a5 100644
--- a/packages/patternfly-3/patternfly-react/src/components/Chart/BulletChart/BulletChart.js
+++ b/packages/patternfly-3/patternfly-react/src/components/Chart/BulletChart/BulletChart.js
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import classNames from 'classnames';
import { patternfly } from '../../../common/patternfly';
import { Tooltip } from '../../Tooltip/index';
-import { helpers } from '../../../common/helpers';
+import { noop } from '../../../common/helpers';
import BulletChartValue from './BulletChartValue';
import BulletChartRange from './BulletChartRange';
@@ -147,7 +147,7 @@ const BulletChart = ({
return {tipText};
};
- const legendTextFunction = value.legendTextFunction || helpers.noop;
+ const legendTextFunction = value.legendTextFunction || noop;
return (
{tipText};
};
- const legendTextFunction = range.legendTextFunction || helpers.noop;
+ const legendTextFunction = range.legendTextFunction || noop;
return (