diff options
| author | Fuwn <[email protected]> | 2025-09-25 15:28:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-25 15:28:46 -0700 |
| commit | 17ab07cd8bd6456c6a9231866b449a0588b481aa (patch) | |
| tree | 9b50fb666857bdc8aba2ad7167605b8bfd2f626f /Sora | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-17ab07cd8bd6456c6a9231866b449a0588b481aa.tar.xz sora-testing-17ab07cd8bd6456c6a9231866b449a0588b481aa.zip | |
feat: Development commit
Diffstat (limited to 'Sora')
| -rw-r--r-- | Sora/Data/CollectionPickerOption.swift | 2 | ||||
| -rw-r--r-- | Sora/Views/FavoritesView.swift | 2 | ||||
| -rw-r--r-- | Sora/Views/Generic/GenericListView.swift | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Sora/Data/CollectionPickerOption.swift b/Sora/Data/CollectionPickerOption.swift index 930797a..a0bd9f9 100644 --- a/Sora/Data/CollectionPickerOption.swift +++ b/Sora/Data/CollectionPickerOption.swift @@ -35,7 +35,7 @@ enum CollectionPickerOption: Identifiable, Hashable { return name case .uncategorized: - return "Uncategorised" + return "Uncategorized" } } } diff --git a/Sora/Views/FavoritesView.swift b/Sora/Views/FavoritesView.swift index 0a82ea1..1deece3 100644 --- a/Sora/Views/FavoritesView.swift +++ b/Sora/Views/FavoritesView.swift @@ -222,7 +222,7 @@ struct FavoritesView: View { // swiftlint:disable:this type_body_length Button(action: { selectedCollectionOption = .uncategorized }) { - Label("Uncategorised", systemImage: "folder.badge.questionmark") + Label("Uncategorized", systemImage: "folder.badge.questionmark") } } diff --git a/Sora/Views/Generic/GenericListView.swift b/Sora/Views/Generic/GenericListView.swift index eb2c153..5ba1fb0 100644 --- a/Sora/Views/Generic/GenericListView.swift +++ b/Sora/Views/Generic/GenericListView.swift @@ -244,7 +244,7 @@ struct GenericListView<T: Identifiable & Hashable & GenericItem>: View { Button(action: { selectedCollectionOption = .uncategorized }) { - Label("Uncategorised", systemImage: "folder.badge.questionmark") + Label("Uncategorized", systemImage: "folder.badge.questionmark") } } |