@@ -90,17 +90,6 @@ const Filter = () => {
90
90
const constraint =
91
91
_selectedProductData . constraints . properties [ constraintName ]
92
92
if ( constraint . type === 'integer' ) {
93
- const marks = [
94
- {
95
- value : constraint . minimum ,
96
- label : constraint . minimum
97
- } ,
98
- {
99
- value : constraint . maximum ,
100
- label : constraint . minimum
101
- }
102
- ]
103
-
104
93
filterContainer . push (
105
94
< FormControl key = { constraintName } sx = { { marginTop : 4 } } >
106
95
< FormControlLabel
@@ -133,9 +122,6 @@ const Filter = () => {
133
122
< Typography variant = "body2" > { constraint . maximum } </ Typography >
134
123
135
124
</ Box >
136
- < FormHelperText sx = { { color : '#FFF' , paddingTop : 3.5 } } >
137
- { constraint . description }
138
- </ FormHelperText >
139
125
</ FormControl >
140
126
)
141
127
continue
@@ -188,9 +174,6 @@ const Filter = () => {
188
174
)
189
175
} }
190
176
/>
191
- < FormHelperText sx = { { color : '#FFF' , paddingTop : 3.5 } } >
192
- { constraint . description }
193
- </ FormHelperText >
194
177
</ FormControl >
195
178
)
196
179
continue
@@ -220,8 +203,6 @@ const Filter = () => {
220
203
label = { constraint . title }
221
204
labelPlacement = "top"
222
205
/>
223
-
224
- < FormHelperText > { constraint . description } </ FormHelperText >
225
206
</ FormControl >
226
207
)
227
208
continue
@@ -253,8 +234,6 @@ const Filter = () => {
253
234
label = { constraint . title }
254
235
labelPlacement = "top"
255
236
/>
256
-
257
- < FormHelperText > { constraint . description } </ FormHelperText >
258
237
</ FormControl >
259
238
)
260
239
continue
@@ -297,8 +276,6 @@ const Filter = () => {
297
276
label = { constraint . title }
298
277
labelPlacement = "top"
299
278
/>
300
-
301
- < FormHelperText > { constraint . description } </ FormHelperText >
302
279
</ FormControl >
303
280
)
304
281
continue
@@ -323,7 +300,7 @@ const Filter = () => {
323
300
/>
324
301
</ Divider >
325
302
< div style = { { padding : '15px' } } data-testid = "Search" >
326
- < Stack gap = { 4 } > { filterContainer } </ Stack >
303
+ < Stack gap = { 1 } > { filterContainer } </ Stack >
327
304
</ div >
328
305
< div className = "" style = { { marginTop : 24 } } >
329
306
< button className = { `actionButton searchButton` } type = "submit" >
0 commit comments