Skip to content

Commit 21ba38f

Browse files
committed
Remove orange emoji from the task ID emoji representation
It looks to similar to the red and yellow emojis.
1 parent aa17664 commit 21ba38f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SKCore/IndexTaskID.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public enum IndexTaskID: Sendable {
1919
case updateIndexStore(id: UInt32)
2020

2121
private static func numberToEmojis(_ number: Int, numEmojis: Int) -> String {
22-
let emojis = ["🟥", "🟩", "🟦", "🟧", "⬜️", "🟪", "⬛️", "🟨", "🟫"]
22+
let emojis = ["🟥", "🟩", "🟦", "⬜️", "🟪", "⬛️", "🟨", "🟫"]
2323
var number = abs(number)
2424
var result = ""
2525
for _ in 0..<numEmojis {

0 commit comments

Comments
 (0)