We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6bfb1 commit c93923eCopy full SHA for c93923e
src/start/RealmInputScreen.js
@@ -87,10 +87,6 @@ export default function RealmInputScreen(props: Props): Node {
87
}
88
}, [navigation, realmInputValue]);
89
90
- const handleRealmChange = useCallback(value => {
91
- setRealmInputValue(value);
92
- }, []);
93
-
94
const styles = React.useMemo(
95
() =>
96
createStyleSheet({
@@ -132,7 +128,7 @@ export default function RealmInputScreen(props: Props): Node {
132
128
autoCorrect={false}
133
129
autoCapitalize="none"
134
130
returnKeyType="go"
135
- onChangeText={handleRealmChange}
131
+ onChangeText={setRealmInputValue}
136
blurOnSubmit={false}
137
keyboardType="url"
138
underlineColorAndroid="transparent"
0 commit comments