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.
2 parents e81bef8 + 5063b80 commit 95a0629Copy full SHA for 95a0629
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