refactor: remove all unused variables

This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent 1065eb144c
commit a221b5f04f
4 changed files with 3 additions and 9 deletions
@@ -219,7 +219,7 @@ describe('Selection', () => {
expect(
options
.map((option) => option.name)
.filter((entry, i) => checkedInputs[i])
.filter((_, i) => checkedInputs[i])
).toStrictEqual(value);
};