fix: lint warnings
Some checks failed
Build / build (pull_request) Failing after 49s
Lint / Lint Code (pull_request) Failing after 38s
Test / Svelte Checks (pull_request) Failing after 44s

This commit is contained in:
Ilia Mashkov
2026-01-14 15:14:58 +03:00
parent 3302e4a012
commit 7678ab271d
6 changed files with 11 additions and 17 deletions

View File

@@ -632,7 +632,7 @@ describe('ComboControl Component', () => {
await fireEvent.click(controlBtn);
// Both should be present
const slider = await screen.findByRole('slider');
const _slider = await screen.findByRole('slider');
const input = await screen.findByTestId('combo-control-input') as HTMLInputElement;
// Input should show initial value
@@ -843,7 +843,7 @@ describe('ComboControl Component', () => {
it('letter spacing control with decimal precision', async () => {
const control = createTestControl(0, { min: -0.1, max: 0.5, step: 0.01 });
const { container } = render(ComboControl, {
const { container: _container } = render(ComboControl, {
control,
});