File tree 1 file changed +2
-6
lines changed
src/sentry/static/sentry/app/views/organizationIntegrations
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change
1
+ // eslint-disable-next-line no-restricted-imports
1
2
import { Box , Flex } from 'grid-emotion' ;
2
3
import { withTheme } from 'emotion-theming' ;
3
4
import PropTypes from 'prop-types' ;
@@ -8,7 +9,6 @@ import {openIntegrationDetails} from 'app/actionCreators/modal';
8
9
import { PanelItem } from 'app/components/panels' ;
9
10
import { t } from 'app/locale' ;
10
11
import Button from 'app/components/button' ;
11
- import BetaTag from 'app/components/betaTag' ;
12
12
import CircleIndicator from 'app/components/circleIndicator' ;
13
13
import InstalledIntegration , {
14
14
Props as InstalledIntegrationProps ,
@@ -112,16 +112,12 @@ export default class ProviderRow extends React.Component<Props> {
112
112
}
113
113
114
114
render ( ) {
115
- const isBeta = this . props . provider . key === 'pagerduty' ;
116
115
return (
117
116
< PanelItem p = { 0 } direction = "column" data-test-id = { this . props . provider . key } >
118
117
< Flex align = "center" p = { 2 } >
119
118
< PluginIcon size = { 36 } pluginId = { this . props . provider . key } />
120
119
< Box px = { 2 } flex = { 1 } >
121
- < ProviderName >
122
- { this . props . provider . name }
123
- { isBeta && < BetaTag /> }
124
- </ ProviderName >
120
+ < ProviderName > { this . props . provider . name } </ ProviderName >
125
121
< ProviderDetails >
126
122
< Status enabled = { this . isEnabled } />
127
123
< StyledLink onClick = { this . openModal } > Learn More</ StyledLink >
You can’t perform that action at this time.
0 commit comments