my fork of the bluesky client
at main 821 B view raw
1diff --git a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m 2index e916023..0564d97 100644 3--- a/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m 4+++ b/node_modules/@mattermost/react-native-paste-input/ios/PasteInputView.m 5@@ -22,6 +22,11 @@ - (instancetype)initWithBridge:(RCTBridge *)bridge 6 _backedTextInputView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; 7 _backedTextInputView.textInputDelegate = self; 8 9+ // Disable inline predictions to prevent jank in the composer 10+ if (@available(iOS 17.0, *)) { 11+ _backedTextInputView.inlinePredictionType = UITextInlinePredictionTypeNo; 12+ } 13+ 14 [self addSubview:_backedTextInputView]; 15 } 16