Skip to content

Commit 966ed1e

Browse files
committed
[design] #167 PokitLinkCard 뱃지 순서 변경
1 parent d9a5908 commit 966ed1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Projects/DSKit/Sources/Components/PokitLinkCard.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,16 @@ public struct PokitLinkCard<Item: PokitLinkCardItem>: View {
135135
let isUnCategorized = link.categoryName == "미분류"
136136

137137
HStack(spacing: 6) {
138-
if let isRead = link.isRead, !isRead {
139-
PokitBadge(state: .unRead)
140-
}
141-
142138
PokitBadge(
143139
state: isUnCategorized
144140
? .unCategorized
145141
: .default(link.categoryName)
146142
)
147143

144+
if let isRead = link.isRead, !isRead {
145+
PokitBadge(state: .unRead)
146+
}
147+
148148
if let memo = link.memo, !memo.isEmpty {
149149
PokitBadge(state: .memo)
150150
}

0 commit comments

Comments
 (0)