diff options
Diffstat (limited to 'Sora/Views/FavoritesView.swift')
| -rw-r--r-- | Sora/Views/FavoritesView.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Sora/Views/FavoritesView.swift b/Sora/Views/FavoritesView.swift index 1ca41d0..3f12639 100644 --- a/Sora/Views/FavoritesView.swift +++ b/Sora/Views/FavoritesView.swift @@ -424,7 +424,7 @@ struct FavoritesView: View { // swiftlint:disable:this type_body_length "Are you sure you want to remove all favorites? This action cannot be undone.", isPresented: $isShowingRemoveAllConfirmation ) { - Button("Remove All Favorites") { + Button("Remove All Favorites", role: .destructive) { settings.favorites.removeAll() } |