fix: cap max height of download links text editor

This commit is contained in:
nimbold
2026-06-08 06:54:25 +03:30
parent 72ef99d211
commit 5ed9b42c62
+1 -1
View File
@@ -95,7 +95,7 @@ struct AddDownloadsView: View {
.scrollContentBackground(.hidden)
.background(.quaternary.opacity(0.35))
.clipShape(RoundedRectangle(cornerRadius: 8))
.frame(minHeight: 72)
.frame(height: 72)
HStack {
Text("\(pendingDownloads.count) valid link\(pendingDownloads.count == 1 ? "" : "s") detected")