diff --git a/packages/components/src/mobile/bottom-sheet-text-control/index.native.js b/packages/components/src/mobile/bottom-sheet-text-control/index.native.js index c3bcb337d9ad5..1244e2b686aa0 100644 --- a/packages/components/src/mobile/bottom-sheet-text-control/index.native.js +++ b/packages/components/src/mobile/bottom-sheet-text-control/index.native.js @@ -42,8 +42,6 @@ const BottomSheetTextControl = ( { setShowSubSheet( true ); }; - const [ value, onChangeText ] = useState( initialValue ); - const horizontalBorderStyle = usePreferredColorSchemeStyle( styles.horizontalBorder, styles.horizontalBorderDark @@ -77,9 +75,8 @@ const BottomSheetTextControl = ( { onChangeText( text ) } - onChange={ onChange( value ) } - value={ value } + onChangeText={ ( text ) => onChange( text ) } + defaultValue={ initialValue } multiline={ true } placeholder={ placeholder } placeholderTextColor={ '#87a6bc' }