From 56365d7c6111938b93cd0d444bf0fac37995f3a4 Mon Sep 17 00:00:00 2001 From: emergent-agent-e1 Date: Sun, 9 Nov 2025 02:39:34 +0000 Subject: [PATCH] auto-commit for 0d1c3e4f-2b7d-4ce4-a869-74d348e500b6 --- frontend/src/screens/SettingsScreen.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/frontend/src/screens/SettingsScreen.tsx b/frontend/src/screens/SettingsScreen.tsx index 97278de6..f534a0b5 100644 --- a/frontend/src/screens/SettingsScreen.tsx +++ b/frontend/src/screens/SettingsScreen.tsx @@ -66,23 +66,27 @@ export default function SettingsScreen({ navigation }: any) { const SettingSection = ({ title, children }: any) => ( - {title} + {title} {children} ); const SettingItem = ({ icon, title, subtitle, onPress, rightElement }: any) => ( - + - - + + - {title} - {subtitle && {subtitle}} + {title} + {subtitle && {subtitle}} - {rightElement || } + {rightElement || } );