1
- import PropTypes from 'prop-types' ;
2
1
import React from 'react' ;
3
2
import debounce from 'lodash/debounce' ;
4
3
import styled from '@emotion/styled' ;
@@ -14,7 +13,6 @@ import IdBadge from 'app/components/idBadge';
14
13
import MemberListStore from 'app/stores/memberListStore' ;
15
14
import ProjectsStore from 'app/stores/projectsStore' ;
16
15
import SelectControl from 'app/components/forms/selectControl' ;
17
- import SentryTypes from 'app/sentryTypes' ;
18
16
import TeamStore from 'app/stores/teamStore' ;
19
17
import Tooltip from 'app/components/tooltip' ;
20
18
import withApi from 'app/utils/withApi' ;
@@ -77,18 +75,6 @@ type FilterOption<T> = {
77
75
* A component that allows you to select either members and/or teams
78
76
*/
79
77
class SelectMembers extends React . Component < Props , State > {
80
- static propTypes = {
81
- project : SentryTypes . Project ,
82
- organization : SentryTypes . Organization ,
83
- value : PropTypes . string ,
84
- onChange : PropTypes . func . isRequired ,
85
- onInputChange : PropTypes . func ,
86
- disabled : PropTypes . bool ,
87
- styles : PropTypes . shape ( {
88
- control : PropTypes . func ,
89
- } ) ,
90
- } ;
91
-
92
78
state : State = {
93
79
loading : false ,
94
80
inputValue : '' ,
0 commit comments