diff options
Diffstat (limited to 'Sora/Views/Settings/SettingsProviderView.swift')
| -rw-r--r-- | Sora/Views/Settings/SettingsProviderView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/Settings/SettingsProviderView.swift b/Sora/Views/Settings/SettingsProviderView.swift index 907450d..1de25c3 100644 --- a/Sora/Views/Settings/SettingsProviderView.swift +++ b/Sora/Views/Settings/SettingsProviderView.swift @@ -6,7 +6,7 @@ struct SettingsProviderView: View { var body: some View { Picker("Provider", selection: $settings.preferredBooru) { ForEach(BooruProvider.allCases, id: \.self) { type in - Text(type.formatted()).tag(type) + Text(type.rawValue).tag(type) } } } |