diff options
author | William <william@darn.fish> | 2023-05-17 10:41:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 09:41:54 -0500 |
commit | d7826a3334cd5ef0cf4e6f816e1c85c49fa1a7a1 (patch) | |
tree | 7dcfa8443ce0dd5b4b721a37587fcd16b1071228 /src | |
parent | 6dde5ede34cea0abcf4529c2c7d90d355dfa97a3 (diff) | |
download | voidsky-d7826a3334cd5ef0cf4e6f816e1c85c49fa1a7a1.tar.zst |
Properly set isInputFocused (#666)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/SearchMobile.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/screens/SearchMobile.tsx b/src/view/screens/SearchMobile.tsx index 6152038d3..f9b4864b2 100644 --- a/src/view/screens/SearchMobile.tsx +++ b/src/view/screens/SearchMobile.tsx @@ -121,7 +121,7 @@ export const SearchScreen = withAuthRequired( <TouchableWithoutFeedback onPress={onPress} accessible={false}> <View style={[pal.view, styles.container]}> <HeaderWithInput - isInputFocused={true} + isInputFocused={isInputFocused} query={query} setIsInputFocused={setIsInputFocused} onChangeQuery={onChangeQuery} |