mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Linting fix
This commit is contained in:
parent
f4a860e912
commit
fe7c0f2339
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue