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 d9a5908 commit 966ed1eCopy full SHA for 966ed1e
Projects/DSKit/Sources/Components/PokitLinkCard.swift
@@ -135,16 +135,16 @@ public struct PokitLinkCard<Item: PokitLinkCardItem>: View {
135
let isUnCategorized = link.categoryName == "미분류"
136
137
HStack(spacing: 6) {
138
- if let isRead = link.isRead, !isRead {
139
- PokitBadge(state: .unRead)
140
- }
141
-
142
PokitBadge(
143
state: isUnCategorized
144
? .unCategorized
145
: .default(link.categoryName)
146
)
147
+ if let isRead = link.isRead, !isRead {
+ PokitBadge(state: .unRead)
+ }
+
148
if let memo = link.memo, !memo.isEmpty {
149
PokitBadge(state: .memo)
150
}
0 commit comments