Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 60875e8

Browse files
authored
Bug fix
1 parent f6ec37f commit 60875e8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Sources/prostore/views/appsView.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ private struct AppRowView: View {
207207
.clipShape(RoundedRectangle(cornerRadius: 10))
208208
.shadow(radius: 1, y: 1)
209209
.onAppear {
210-
if let uiImage = image.asUIImage() {
210+
let renderer = ImageRenderer(content: image)
211+
if let uiImage = renderer.uiImage {
211212
ImageCache.shared.set(uiImage, for: iconURL)
212213
}
213214
}

0 commit comments

Comments
 (0)