Linting fix

This commit is contained in:
Jackson Harper 2023-05-05 12:46:34 +08:00
parent f4a860e912
commit fe7c0f2339

View file

@ -7,7 +7,7 @@ export const sortedLabels = (labels: Label[] | undefined): Label[] => {
const colors = new Map<string, Label[]>()
for (const label of labels) {
let list = colors.get(label.color) ?? []
const list = colors.get(label.color) ?? []
list.push(label)
colors.set(
label.color,