File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ const Picker = React.forwardRef((props: PickerProps, ref) => {
196
196
}
197
197
} ;
198
198
199
- const renderTextField = useCallback ( ( ) => {
199
+ const renderTextField = ( ) => {
200
200
return renderInput ? (
201
201
// @ts -expect-error - hopefully will be solved after the picker migration ends
202
202
renderInput ( value , label )
@@ -218,17 +218,7 @@ const Picker = React.forwardRef((props: PickerProps, ref) => {
218
218
{ pickerInnerInput }
219
219
</ TextField >
220
220
) ;
221
- } , [
222
- renderInput ,
223
- pickerRef ,
224
- propsByFieldType ,
225
- containerStyle ,
226
- labelStyle ,
227
- accessibilityInfo ,
228
- label ,
229
- pickerInnerInput ,
230
- testID
231
- ] ) ;
221
+ } ;
232
222
233
223
const expandableModalContent = useMemo ( ( ) => {
234
224
const useItems = useWheelPicker || propItems ;
You can’t perform that action at this time.
0 commit comments