diff options
| author | Fuwn <[email protected]> | 2025-03-23 06:29:39 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-03-23 06:29:39 -0700 |
| commit | c0e4857e7c236ad8dffc2783f714fccf966bc69e (patch) | |
| tree | 21f8e4a7a14b3423b7bc988a22d808e2a3a3f8fc /Sora/Views/Generic | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-c0e4857e7c236ad8dffc2783f714fccf966bc69e.tar.xz sora-testing-c0e4857e7c236ad8dffc2783f714fccf966bc69e.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Generic')
| -rw-r--r-- | Sora/Views/Generic/GenericListView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/Generic/GenericListView.swift b/Sora/Views/Generic/GenericListView.swift index 679b172..0207048 100644 --- a/Sora/Views/Generic/GenericListView.swift +++ b/Sora/Views/Generic/GenericListView.swift @@ -120,7 +120,7 @@ struct GenericListView<T: Identifiable & Hashable & GenericItem>: View { } }) { if isBookmarked { - Label("Unookmark Tag\(item.tags.count == 1 ? "" : "s")", systemImage: "bookmark.fill") + Label("Unbookmark Tag\(item.tags.count == 1 ? "" : "s")", systemImage: "bookmark.fill") } else { Label("Bookmark Tag\(item.tags.count == 1 ? "" : "s")", systemImage: "bookmark") } |