We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e81bef8 commit 5063b80Copy full SHA for 5063b80
SwiftUI-WorkoutApp/Screens/Common/ImagePicker/PickedImagesGrid.swift
@@ -99,7 +99,9 @@ private extension PickedImagesGrid {
99
if images.isEmpty {
100
return "Добавьте фотографии, максимум \(selectionLimit)"
101
} else {
102
- return selectionLimit > 0 ? "Можно добавить ещё \(selectionLimitString)" : ""
+ return selectionLimit > 0
103
+ ? "Можно добавить ещё \(selectionLimitString)"
104
+ : "Добавлено максимальное количество фотографий"
105
}
106
107
0 commit comments