mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Why didnt i use const here?
This commit is contained in:
parent
194d93912c
commit
c3084d668e
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ export function SetLabelsModal(props: SetLabelsModalProps): JSX.Element {
|
|||
return false
|
||||
}
|
||||
|
||||
for (let label of left) {
|
||||
for (const label of left) {
|
||||
if (!right.find((r) => label.id == r.id)) {
|
||||
return false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue