Line length

This commit is contained in:
Justin Mazzocchi 2021-03-30 22:58:11 -07:00
parent b58fa1ac83
commit 9c2c46ed82
No known key found for this signature in database
GPG Key ID: E223E6937AAFB01C
1 changed files with 2 additions and 1 deletions

View File

@ -397,7 +397,8 @@ private extension CompositionView {
for removal in diff.removals {
guard case let .remove(_, id, _) = removal,
let index = attachmentUploadsStackView.arrangedSubviews.firstIndex(where: { ($0 as? AttachmentUploadView)?.id == id })
let index = attachmentUploadsStackView.arrangedSubviews
.firstIndex(where: { ($0 as? AttachmentUploadView)?.id == id })
else { continue }
attachmentUploadsStackView.arrangedSubviews[index].removeFromSuperview()