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 || }
);