summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/SettingsView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sora/Views/Settings/SettingsView.swift')
-rw-r--r--Sora/Views/Settings/SettingsView.swift10
1 files changed, 5 insertions, 5 deletions
diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift
index 6c034e3..3f1d309 100644
--- a/Sora/Views/Settings/SettingsView.swift
+++ b/Sora/Views/Settings/SettingsView.swift
@@ -19,7 +19,7 @@ struct SettingsView: View {
}
Section(header: Text("Search")) {
- SettingsSearchView()
+ SettingsSectionSearchView()
}
Section(header: Text("Collections")) {
@@ -29,21 +29,21 @@ struct SettingsView: View {
}
Section(header: Text("Settings")) {
- SettingsSettingsView()
+ SettingsSectionSettingsView()
}
Section(header: Text("Import & Export")) {
- SettingsImportExportView()
+ SettingsSectionImportExportView()
}
#if DEBUG
Section(header: Text("Debug")) {
- SettingsDebugView()
+ SettingsSectionDebugView()
}
#endif
Section(header: Text("Credits")) {
- SettingsCreditsView()
+ SettingsSectionCreditsView()
}
}
#if os(macOS)