Skip to content

Commit ae30db0

Browse files
committed
chore: cleanup
1 parent 6e2ee08 commit ae30db0

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

site/src/components/MultiSelectCombobox/MultiSelectCombobox.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export const MultiSelectCombobox = React.forwardRef<
297297
setOptions(transitionToGroupOption(res || [], groupBy));
298298
};
299299

300-
const exec = async () => {
300+
const exec = () => {
301301
if (!onSearchSync || !open) return;
302302

303303
if (triggerSearchOnFocus) {
@@ -310,7 +310,6 @@ export const MultiSelectCombobox = React.forwardRef<
310310
};
311311

312312
void exec();
313-
// eslint-disable-next-line react-hooks/exhaustive-deps
314313
}, [
315314
debouncedSearchTerm,
316315
groupBy,
@@ -445,7 +444,7 @@ export const MultiSelectCombobox = React.forwardRef<
445444
} // When onSearch is provided, we don't want to filter the options. You can still override it.
446445
filter={commandFilter()}
447446
>
448-
{/* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */}
447+
{/* biome-ignore lint/a11y/useKeyWithClickEvents: onKeyDown is not needed here */}
449448
<div
450449
className={cn(
451450
`*:min-h-9 rounded-md border border-solid border-border text-sm pr-3

site/tsconfig.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@
1717
"strict": true,
1818
"target": "es2020",
1919
"baseUrl": "src/",
20-
"paths": {
21-
"@/*": ["./*"]
22-
}
2320
},
2421
"include": ["**/*.ts", "**/*.tsx"],
2522
"exclude": ["node_modules/", "_jest"],

site/vite.config.mts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ export default defineConfig({
9292
testHelpers: path.resolve(__dirname, "./src/testHelpers"),
9393
theme: path.resolve(__dirname, "./src/theme"),
9494
utils: path.resolve(__dirname, "./src/utils"),
95-
"@": path.resolve(__dirname, "./src"),
9695
},
9796
},
9897
});

0 commit comments

Comments
 (0)