react-native-rich-editor
react-native-rich-editor copied to clipboard
dataDetectorTypes={['none']} issue
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch [email protected] for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/react-native-pell-rich-editor/src/RichEditor.js b/node_modules/react-native-pell-rich-editor/src/RichEditor.js
index 14bea22..070c53f 100755
--- a/node_modules/react-native-pell-rich-editor/src/RichEditor.js
+++ b/node_modules/react-native-pell-rich-editor/src/RichEditor.js
@@ -267,7 +267,7 @@ export default class RichTextEditor extends Component {
ref={that.setRef}
onMessage={that.onMessage}
originWhitelist={['*']}
- dataDetectorTypes={'none'}
+ dataDetectorTypes={['none']}
domStorageEnabled={false}
bounces={false}
javaScriptEnabled={true}
This issue body was partially generated by patch-package.