summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-20 19:39:33 -0800
committerFuwn <[email protected]>2025-02-20 19:39:33 -0800
commit4c531e84c05603e0091375560f35fb64170f53bc (patch)
tree4c43a897416be379abde08a3e3484179c51bf292 /Sora/Views/Settings
parentfeat: Development commit (diff)
downloadsora-testing-4c531e84c05603e0091375560f35fb64170f53bc.tar.xz
sora-testing-4c531e84c05603e0091375560f35fb64170f53bc.zip
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings')
-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)
}
}