React native JP text duplication

1 week ago 10
ARTICLE AD BOX

After iOS26 I have a very specific bug that I am not knowing how to handle even with AI.

By typing 8 japanese characters or numbers 12345678, the input will receive duplicated 12345678123456, so 123456 were not typed.

Only happens at 8 characters and 12. So at this point I really don't know what to do and would appreciate some help since AI can't help on that.

<Input value={scheduleData.name} InputBox_container={style.inputBoxContainer} InputStyle={[ style.textInputStyle, {backgroundColor: colors.buttonBackground, color: colors.text}, ]} placeholder={context.translations.enterScheduleName} onChangeText={onChangeTextHandler} maxLength={MAX_NAME_LENGTH} /> const onChangeTextHandler = value => { if (value.length >= MAX_NAME_LENGTH) { setErrorMessage(context.translations.limitOfCharactersInput); setModalPopUp(true); } isDataEdited.current = true; setScheduleData({...scheduleData, name: value}); };
Read Entire Article