We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3dc589 commit 9fc05a5Copy full SHA for 9fc05a5
1 file changed
โProjects/Feature/FeatureCategorySetting/Sources/PokitCategorySettingView.swiftโ
@@ -73,16 +73,18 @@ private extension PokitCategorySettingView {
73
.resizable()
74
.roundedCorner(12, corners: .allCorners)
75
} 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)
+ WithPerceptionTracking {
+ ZStack {
+ Color.pokit(.bg(.disable))
+
+ if store.selectedProfile?.imageURL != nil {
+ PokitSpinner()
+ .foregroundStyle(.pokit(.icon(.brand)))
83
+ .frame(width: 48, height: 48)
84
+ }
85
}
86
+ .clipShape(RoundedRectangle(cornerRadius: 12))
87
- .clipShape(RoundedRectangle(cornerRadius: 12))
88
89
90
.frame(width: 80, height: 80)
0 commit comments