Skip to content

Commit 2a881a7

Browse files
committed
style: Fix linter findings
1 parent fbcea5a commit 2a881a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/solid/src/routes/components/control/select.route.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export const SelectRoute: Component = () => {
1111
];
1212

1313
const handleChange = (value: unknown) => {
14+
// eslint-disable-next-line no-console
1415
console.log(value);
1516
};
1617

packages/solid/src/components/control/select/select.component.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, createSignal, For, JSX } from 'solid-js';
1+
import { Component, For, JSX } from 'solid-js';
22
import { SelectOption, SelectProps } from './select.types';
33
import { attributes, classNames } from '@src/main';
44
import { Icon } from '@iconify-icon/solid';

0 commit comments

Comments
 (0)