refactor: remove all unused variables

This commit is contained in:
2026-08-08 15:23:32 +02:00
parent 99eabaa371
commit 2b6d84b0cb
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);
};