diff --git a/app/src/screens/dev/DevSettingsScreen.tsx b/app/src/screens/dev/DevSettingsScreen.tsx index a790935c3..bda2d495a 100644 --- a/app/src/screens/dev/DevSettingsScreen.tsx +++ b/app/src/screens/dev/DevSettingsScreen.tsx @@ -11,6 +11,7 @@ import type { NativeStackScreenProps } from '@react-navigation/native-stack'; import { useSafeBottomPadding } from '@selfxyz/mobile-sdk-alpha/hooks'; import BugIcon from '@/assets/icons/bug_icon.svg'; +import ErrorBoundary from '@/components/ErrorBoundary'; import type { RootStackParamList } from '@/navigation'; import { ErrorInjectionSelector } from '@/screens/dev/components/ErrorInjectionSelector'; import { LogLevelSelector } from '@/screens/dev/components/LogLevelSelector'; @@ -51,63 +52,65 @@ const DevSettingsScreen: React.FC = () => { } = useDangerZoneActions(); return ( - - - - - {IS_DEV_MODE && ( - - )} - - - - } - title="Log Level" - description="Configure logging verbosity" + + + - - + + + {IS_DEV_MODE && ( + + )} + + - {IS_DEV_MODE && ( } - title="Onboarding Error Testing" - description="Test onboarding error flows" + title="Log Level" + description="Configure logging verbosity" > - + - )} - - - + {IS_DEV_MODE && ( + } + title="Onboarding Error Testing" + description="Test onboarding error flows" + > + + + )} + + + + + ); };