about summary refs log tree commit diff
path: root/src/App.native.tsx
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-05-05 03:14:14 -0700
committerGitHub <noreply@github.com>2024-05-05 03:14:14 -0700
commit6b615f3720376da24b99624622b9dd5869d481aa (patch)
tree074b0d3c0eae7b0aceb145ce7be35b8aa2333833 /src/App.native.tsx
parentc4160c25a315eab0113edf1ef1bde76a44d695c3 (diff)
downloadvoidsky-6b615f3720376da24b99624622b9dd5869d481aa.tar.zst
only use `KeyboardProvider` in conversation screen (#3869)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r--src/App.native.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx
index b60d024d5..9fa82e9cd 100644
--- a/src/App.native.tsx
+++ b/src/App.native.tsx
@@ -4,7 +4,6 @@ import 'view/icons'
 
 import React, {useEffect, useState} from 'react'
 import {GestureHandlerRootView} from 'react-native-gesture-handler'
-import {KeyboardProvider} from 'react-native-keyboard-controller'
 import {RootSiblingParent} from 'react-native-root-siblings'
 import {
   initialWindowMetrics,
@@ -157,9 +156,7 @@ function App() {
                   <LightboxStateProvider>
                     <I18nProvider>
                       <PortalProvider>
-                        <KeyboardProvider>
-                          <InnerApp />
-                        </KeyboardProvider>
+                        <InnerApp />
                       </PortalProvider>
                     </I18nProvider>
                   </LightboxStateProvider>