Skip to content

Commit 4bcd608

Browse files
committed
fix :: 머지 중 빌드안되던 문제 수정
1 parent 31cb0f8 commit 4bcd608

File tree

1 file changed

+3
-2
lines changed
  • PhotoGether/PresentationLayer/EditPhotoRoomFeature/EditPhotoRoomFeature/Source/View

1 file changed

+3
-2
lines changed

PhotoGether/PresentationLayer/EditPhotoRoomFeature/EditPhotoRoomFeature/Source/View/StickerView.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
import UIKit
2+
import BaseFeature
13
import DesignSystem
24
import PhotoGetherDomainInterface
3-
import UIKit
45

56
protocol StickerViewActionDelegate: AnyObject {
67
func stickerView(_ stickerView: StickerView, didTap id: UUID)
@@ -220,7 +221,7 @@ final class StickerView: UIView {
220221
private func setImage(to urlString: String) {
221222
guard let url = URL(string: urlString) else { return }
222223

223-
Task { await self.setAsyncImage(url) }
224+
Task { await imageView.setAsyncImage(url) }
224225
}
225226

226227
@objc private func handleTap() {

0 commit comments

Comments
 (0)