summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/SettingsSourceView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sora/Views/Settings/SettingsSourceView.swift')
-rw-r--r--Sora/Views/Settings/SettingsSourceView.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/Settings/SettingsSourceView.swift b/Sora/Views/Settings/SettingsSourceView.swift
index 8663290..d1f8f30 100644
--- a/Sora/Views/Settings/SettingsSourceView.swift
+++ b/Sora/Views/Settings/SettingsSourceView.swift
@@ -5,7 +5,7 @@ struct SettingsSourceView: View {
var body: some View {
Picker("Booru", selection: $settings.preferredBooru) {
- ForEach(Booru.allCases, id: \.self) { type in
+ ForEach(BooruProvider.allCases, id: \.self) { type in
Text(type.rawValue.capitalized).tag(type)
}
}