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 31cb0f8 commit 4bcd608Copy full SHA for 4bcd608
PhotoGether/PresentationLayer/EditPhotoRoomFeature/EditPhotoRoomFeature/Source/View/StickerView.swift
@@ -1,6 +1,7 @@
1
+import UIKit
2
+import BaseFeature
3
import DesignSystem
4
import PhotoGetherDomainInterface
-import UIKit
5
6
protocol StickerViewActionDelegate: AnyObject {
7
func stickerView(_ stickerView: StickerView, didTap id: UUID)
@@ -220,7 +221,7 @@ final class StickerView: UIView {
220
221
private func setImage(to urlString: String) {
222
guard let url = URL(string: urlString) else { return }
223
- Task { await self.setAsyncImage(url) }
224
+ Task { await imageView.setAsyncImage(url) }
225
}
226
227
@objc private func handleTap() {
0 commit comments