@@ -19,7 +19,6 @@ import { useTranslation } from 'react-i18next';
19
19
20
20
export type OrganizationInfoPayload = {
21
21
organizationName : string ;
22
- organizationType : string ;
23
22
organizationIndustry : string ;
24
23
organizationSize : string ;
25
24
country : string ;
@@ -28,7 +27,6 @@ export type OrganizationInfoPayload = {
28
27
type OrganizationInfoFormProps = {
29
28
currentStep : number ;
30
29
stepCount : number ;
31
- organizationTypeOptions : SelectOption [ ] ;
32
30
organizationIndustryOptions : SelectOption [ ] ;
33
31
organizationSizeOptions : SelectOption [ ] ;
34
32
countryOptions : SelectOption [ ] ;
@@ -42,7 +40,6 @@ type OrganizationInfoFormProps = {
42
40
const OrganizationInfoForm = ( {
43
41
currentStep,
44
42
stepCount,
45
- organizationTypeOptions,
46
43
organizationIndustryOptions,
47
44
organizationSizeOptions,
48
45
countryOptions,
@@ -57,7 +54,6 @@ const OrganizationInfoForm = ({
57
54
const isMobile = ! breakpoints . includes ( 'md' ) ;
58
55
59
56
const organizationNameField = useUniqueId ( ) ;
60
- const organizationTypeField = useUniqueId ( ) ;
61
57
const organizationIndustryField = useUniqueId ( ) ;
62
58
const organizationSizeField = useUniqueId ( ) ;
63
59
const countryField = useUniqueId ( ) ;
@@ -102,27 +98,6 @@ const OrganizationInfoForm = ({
102
98
< Field . Error > { t ( 'component.form.requiredField' ) } </ Field . Error >
103
99
) }
104
100
</ Field >
105
- < Field >
106
- < Field . Label htmlFor = { organizationTypeField } >
107
- { t ( 'form.organizationInfoForm.fields.organizationType.label' ) }
108
- </ Field . Label >
109
- < Field . Row >
110
- < Controller
111
- name = 'organizationType'
112
- control = { control }
113
- render = { ( { field } ) => (
114
- < Select
115
- { ...field }
116
- options = { organizationTypeOptions }
117
- placeholder = { t (
118
- 'form.organizationInfoForm.fields.organizationType.placeholder'
119
- ) }
120
- id = { organizationTypeField }
121
- />
122
- ) }
123
- />
124
- </ Field . Row >
125
- </ Field >
126
101
< Field >
127
102
< Field . Label htmlFor = { organizationIndustryField } >
128
103
{ t ( 'form.organizationInfoForm.fields.organizationIndustry.label' ) }
0 commit comments