From 13cf00583b83a3c4292ecacdefa16fdef795b043 Mon Sep 17 00:00:00 2001 From: Igor Furgala Date: Mon, 13 Oct 2025 10:10:52 +0200 Subject: [PATCH] fix: editable on iOS --- ios/EnrichedTextInputView.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/EnrichedTextInputView.mm b/ios/EnrichedTextInputView.mm index 445488690..7ad7893a8 100644 --- a/ios/EnrichedTextInputView.mm +++ b/ios/EnrichedTextInputView.mm @@ -423,7 +423,7 @@ - (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const & } // editable - if(newViewProps.editable != oldViewProps.editable) { + if(newViewProps.editable != textView.editable) { textView.editable = newViewProps.editable; }