We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c95b7c8 commit 768eb6aCopy full SHA for 768eb6a
Projects/Feature/FeatureCategoryDetail/Sources/CategoryDetailView.swift
@@ -164,10 +164,12 @@ private extension CategoryDetailView {
164
.foregroundStyle(textColor)
165
.pokitFont(.b2(.m))
166
}
167
- Text("#\(store.category.keywordType.title)")
168
- .foregroundStyle(textColor)
169
- .pokitFont(.b2(.m))
170
- .padding(.leading, 4.5)
+ if store.category.keywordType != .default {
+ Text("#\(store.category.keywordType.title)")
+ .foregroundStyle(textColor)
+ .pokitFont(.b2(.m))
171
+ .padding(.leading, 4.5)
172
+ }
173
174
.padding(.bottom, 16)
175
PokitIconLButton(
0 commit comments