about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam <william@darn.fish>2023-05-17 10:41:54 -0400
committerGitHub <noreply@github.com>2023-05-17 09:41:54 -0500
commitd7826a3334cd5ef0cf4e6f816e1c85c49fa1a7a1 (patch)
tree7dcfa8443ce0dd5b4b721a37587fcd16b1071228
parent6dde5ede34cea0abcf4529c2c7d90d355dfa97a3 (diff)
downloadvoidsky-d7826a3334cd5ef0cf4e6f816e1c85c49fa1a7a1.tar.zst
Properly set isInputFocused (#666)
-rw-r--r--src/view/screens/SearchMobile.tsx2
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}