Skip to content

Commit 9fc05a5

Browse files
committed
[fix] #120 Perception Tracking ์ˆ˜์ •
1 parent c3dc589 commit 9fc05a5

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

โ€ŽProjects/Feature/FeatureCategorySetting/Sources/PokitCategorySettingView.swiftโ€Ž

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,18 @@ private extension PokitCategorySettingView {
7373
.resizable()
7474
.roundedCorner(12, corners: .allCorners)
7575
} else {
76-
ZStack {
77-
Color.pokit(.bg(.disable))
78-
79-
if store.selectedProfile?.imageURL != nil {
80-
PokitSpinner()
81-
.foregroundStyle(.pokit(.icon(.brand)))
82-
.frame(width: 48, height: 48)
76+
WithPerceptionTracking {
77+
ZStack {
78+
Color.pokit(.bg(.disable))
79+
80+
if store.selectedProfile?.imageURL != nil {
81+
PokitSpinner()
82+
.foregroundStyle(.pokit(.icon(.brand)))
83+
.frame(width: 48, height: 48)
84+
}
8385
}
86+
.clipShape(RoundedRectangle(cornerRadius: 12))
8487
}
85-
.clipShape(RoundedRectangle(cornerRadius: 12))
8688
}
8789
}
8890
.frame(width: 80, height: 80)

0 commit comments

Comments
ย (0)