We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae454a1 commit 63e25a2Copy full SHA for 63e25a2
Core/Sources/HostApp/FeatureSettingsView.swift
@@ -6,9 +6,8 @@ struct FeatureSettingsView: View {
6
var body: some View {
7
SidebarTabView(tag: $tag) {
8
ScrollView {
9
- SuggestionSettingsView()
+ SuggestionSettingsView().padding()
10
}
11
- .padding()
12
.sidebarItem(
13
tag: 0,
14
title: "Suggestion",
@@ -17,9 +16,8 @@ struct FeatureSettingsView: View {
17
16
)
18
19
20
- ChatSettingsView()
+ ChatSettingsView().padding()
21
22
23
24
tag: 1,
25
title: "Chat",
@@ -28,9 +26,8 @@ struct FeatureSettingsView: View {
28
26
29
27
30
31
- PromptToCodeSettingsView()
+ PromptToCodeSettingsView().padding()
32
33
34
35
tag: 2,
36
title: "Prompt to Code",
0 commit comments