From 2fb5ff303451ffa2e3813171a3bdb849471f5e12 Mon Sep 17 00:00:00 2001 From: joshavant <830519+joshavant@users.noreply.github.com> Date: Fri, 5 Jun 2026 05:47:06 -0500 Subject: [PATCH] fix ios settings bottom scroll inset --- apps/ios/Sources/Design/SettingsProTab.swift | 6 +----- apps/ios/Sources/Design/SettingsProTabSections.swift | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/apps/ios/Sources/Design/SettingsProTab.swift b/apps/ios/Sources/Design/SettingsProTab.swift index ce438ea5e8ba..83df18169eed 100644 --- a/apps/ios/Sources/Design/SettingsProTab.swift +++ b/apps/ios/Sources/Design/SettingsProTab.swift @@ -70,11 +70,7 @@ struct SettingsProTab: View { self.settingsListSection } .padding(.top, 18) - } - .safeAreaInset(edge: .bottom, spacing: 0) { - Color.clear - .frame(height: OpenClawProMetric.pagePadding) - .accessibilityHidden(true) + .padding(.bottom, OpenClawProMetric.bottomScrollInset) } } .navigationBarHidden(true) diff --git a/apps/ios/Sources/Design/SettingsProTabSections.swift b/apps/ios/Sources/Design/SettingsProTabSections.swift index 3208c033eedc..8161ebf70666 100644 --- a/apps/ios/Sources/Design/SettingsProTabSections.swift +++ b/apps/ios/Sources/Design/SettingsProTabSections.swift @@ -204,11 +204,7 @@ extension SettingsProTab { } } .padding(.top, 18) - } - .safeAreaInset(edge: .bottom, spacing: 0) { - Color.clear - .frame(height: OpenClawProMetric.pagePadding) - .accessibilityHidden(true) + .padding(.bottom, OpenClawProMetric.bottomScrollInset) } } .navigationTitle(self.title(for: route))