diff --git a/apps/mobile/app/components/app-lock-overlay/index.tsx b/apps/mobile/app/components/app-lock-overlay/index.tsx index 65d75a0789..577bd7eb48 100644 --- a/apps/mobile/app/components/app-lock-overlay/index.tsx +++ b/apps/mobile/app/components/app-lock-overlay/index.tsx @@ -46,6 +46,7 @@ import Input from "../ui/input"; import Seperator from "../ui/seperator"; import Heading from "../ui/typography/heading"; import Paragraph from "../ui/typography/paragraph"; +import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view"; const getUser = () => { const user = MMKV.getString("user"); @@ -191,13 +192,15 @@ const AppLockedOverlay = () => { }, [appState, onUnlockAppRequested, appLocked]); return appLocked ? ( - @@ -314,7 +317,7 @@ const AppLockedOverlay = () => { - + ) : null; };