diff options
| author | Fuwn <[email protected]> | 2025-02-20 19:39:33 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-20 19:39:33 -0800 |
| commit | 4c531e84c05603e0091375560f35fb64170f53bc (patch) | |
| tree | 4c43a897416be379abde08a3e3484179c51bf292 /Sora/Views/Settings | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-4c531e84c05603e0091375560f35fb64170f53bc.tar.xz sora-testing-4c531e84c05603e0091375560f35fb64170f53bc.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Settings')
| -rw-r--r-- | Sora/Views/Settings/SettingsSourceView.swift | 2 |
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) } } |