Skip to content

Commit 9490ed7

Browse files
committed
[fix] #193 프로필 사진 background 색상 수정
1 parent f00ef87 commit 9490ed7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Projects/Feature/FeatureCategorySetting/Sources/PokitCategorySettingView.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private extension PokitCategorySettingView {
8484
transaction: .init(animation: .spring)
8585
) { phase in
8686
if let image = phase.image {
87-
Circle().foregroundStyle(.pokit(.color(.grayScale(._100))))
87+
Circle().foregroundStyle(.pokit(.bg(.primary)))
8888
.overlay {
8989
image
9090
.resizable()
@@ -94,15 +94,14 @@ private extension PokitCategorySettingView {
9494
} else {
9595
WithPerceptionTracking {
9696
ZStack {
97-
Color.pokit(.bg(.disable))
98-
97+
Color.pokit(.bg(.primary))
9998
if store.selectedProfile?.imageURL != nil {
10099
PokitSpinner()
101100
.foregroundStyle(.pokit(.icon(.brand)))
102101
.frame(width: 48, height: 48)
103102
}
104103
}
105-
.clipShape(RoundedRectangle(cornerRadius: 12))
104+
.clipShape(.circle)
106105
}
107106
}
108107
}

0 commit comments

Comments
 (0)