Skip to content

Commit 63e25a2

Browse files
committed
Fix padding
1 parent ae454a1 commit 63e25a2

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Core/Sources/HostApp/FeatureSettingsView.swift

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ struct FeatureSettingsView: View {
66
var body: some View {
77
SidebarTabView(tag: $tag) {
88
ScrollView {
9-
SuggestionSettingsView()
9+
SuggestionSettingsView().padding()
1010
}
11-
.padding()
1211
.sidebarItem(
1312
tag: 0,
1413
title: "Suggestion",
@@ -17,9 +16,8 @@ struct FeatureSettingsView: View {
1716
)
1817

1918
ScrollView {
20-
ChatSettingsView()
19+
ChatSettingsView().padding()
2120
}
22-
.padding()
2321
.sidebarItem(
2422
tag: 1,
2523
title: "Chat",
@@ -28,9 +26,8 @@ struct FeatureSettingsView: View {
2826
)
2927

3028
ScrollView {
31-
PromptToCodeSettingsView()
29+
PromptToCodeSettingsView().padding()
3230
}
33-
.padding()
3431
.sidebarItem(
3532
tag: 2,
3633
title: "Prompt to Code",

0 commit comments

Comments
 (0)