diff options
author | Mathieu Acthernoene <zoontek@gmail.com> | 2025-04-22 18:16:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-22 19:16:50 +0300 |
commit | a770f5635b549f2a87ffeaedd031dfe8e37b58c8 (patch) | |
tree | 2e935d294227e57b2e81ba79ba96a6a85f268971 /src/lib/hooks/useEnableKeyboardController.tsx | |
parent | 6e80b340c825900524bfe981ba29cfd0c6cf5934 (diff) | |
download | voidsky-a770f5635b549f2a87ffeaedd031dfe8e37b58c8.tar.zst |
Edge to edge support (#7497)
Diffstat (limited to 'src/lib/hooks/useEnableKeyboardController.tsx')
-rw-r--r-- | src/lib/hooks/useEnableKeyboardController.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/hooks/useEnableKeyboardController.tsx b/src/lib/hooks/useEnableKeyboardController.tsx index 366791c0c..858f6943a 100644 --- a/src/lib/hooks/useEnableKeyboardController.tsx +++ b/src/lib/hooks/useEnableKeyboardController.tsx @@ -26,10 +26,7 @@ export function KeyboardControllerProvider({ children: React.ReactNode }) { return ( - <KeyboardProvider - enabled={false} - // I don't think this is necessary, but Chesterton's fence and all that -sfn - statusBarTranslucent={true}> + <KeyboardProvider enabled={false}> <KeyboardControllerProviderInner> {children} </KeyboardControllerProviderInner> |