diff --git a/apps/mobile/src/app/(home)/settings/index.tsx b/apps/mobile/src/app/(home)/settings/index.tsx index 7976c0f23..0cc3fb075 100644 --- a/apps/mobile/src/app/(home)/settings/index.tsx +++ b/apps/mobile/src/app/(home)/settings/index.tsx @@ -4,6 +4,7 @@ import { useSafeAreaInsets } from 'react-native-safe-area-context'; import { Divider } from '@/components/divider'; import { NotifyUserSheet } from '@/components/sheets/notify-user-sheet.layout'; +import { useAuthContext } from '@/components/splash-screen-guard/use-auth-context'; import { AppRoutes } from '@/routes'; import { TestId } from '@/shared/test-id'; import { t } from '@lingui/macro'; @@ -35,6 +36,7 @@ export default function SettingsScreen() { const feesSheetRef = useRef(null); const theme = useTheme(); const router = useRouter(); + const { lockApp } = useAuthContext(); return ( <> @@ -204,7 +206,7 @@ export default function SettingsScreen() {