Skip to content

Commit 431a42a

Browse files
author
NisanthanNanthakumar
authored
fix: Remove beta tag on PagerDuty integration (#16344)
1 parent e2c963f commit 431a42a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/sentry/static/sentry/app/views/organizationIntegrations/providerRow.tsx

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// eslint-disable-next-line no-restricted-imports
12
import {Box, Flex} from 'grid-emotion';
23
import {withTheme} from 'emotion-theming';
34
import PropTypes from 'prop-types';
@@ -8,7 +9,6 @@ import {openIntegrationDetails} from 'app/actionCreators/modal';
89
import {PanelItem} from 'app/components/panels';
910
import {t} from 'app/locale';
1011
import Button from 'app/components/button';
11-
import BetaTag from 'app/components/betaTag';
1212
import CircleIndicator from 'app/components/circleIndicator';
1313
import InstalledIntegration, {
1414
Props as InstalledIntegrationProps,
@@ -112,16 +112,12 @@ export default class ProviderRow extends React.Component<Props> {
112112
}
113113

114114
render() {
115-
const isBeta = this.props.provider.key === 'pagerduty';
116115
return (
117116
<PanelItem p={0} direction="column" data-test-id={this.props.provider.key}>
118117
<Flex align="center" p={2}>
119118
<PluginIcon size={36} pluginId={this.props.provider.key} />
120119
<Box px={2} flex={1}>
121-
<ProviderName>
122-
{this.props.provider.name}
123-
{isBeta && <BetaTag />}
124-
</ProviderName>
120+
<ProviderName>{this.props.provider.name}</ProviderName>
125121
<ProviderDetails>
126122
<Status enabled={this.isEnabled} />
127123
<StyledLink onClick={this.openModal}>Learn More</StyledLink>

0 commit comments

Comments
 (0)