File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed
src/components/MultiSelectCombobox Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ export const MultiSelectCombobox = React.forwardRef<
297
297
setOptions ( transitionToGroupOption ( res || [ ] , groupBy ) ) ;
298
298
} ;
299
299
300
- const exec = async ( ) => {
300
+ const exec = ( ) => {
301
301
if ( ! onSearchSync || ! open ) return ;
302
302
303
303
if ( triggerSearchOnFocus ) {
@@ -310,7 +310,6 @@ export const MultiSelectCombobox = React.forwardRef<
310
310
} ;
311
311
312
312
void exec ( ) ;
313
- // eslint-disable-next-line react-hooks/exhaustive-deps
314
313
} , [
315
314
debouncedSearchTerm ,
316
315
groupBy ,
@@ -445,7 +444,7 @@ export const MultiSelectCombobox = React.forwardRef<
445
444
} // When onSearch is provided, we don't want to filter the options. You can still override it.
446
445
filter = { commandFilter ( ) }
447
446
>
448
- { /* biome-ignore lint/a11y/useKeyWithClickEvents: <explanation> */ }
447
+ { /* biome-ignore lint/a11y/useKeyWithClickEvents: onKeyDown is not needed here */ }
449
448
< div
450
449
className = { cn (
451
450
`*:min-h-9 rounded-md border border-solid border-border text-sm pr-3
Original file line number Diff line number Diff line change 17
17
"strict" : true ,
18
18
"target" : " es2020" ,
19
19
"baseUrl" : " src/" ,
20
- "paths" : {
21
- "@/*" : [" ./*" ]
22
- }
23
20
},
24
21
"include" : [" **/*.ts" , " **/*.tsx" ],
25
22
"exclude" : [" node_modules/" , " _jest" ],
Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ export default defineConfig({
92
92
testHelpers : path . resolve ( __dirname , "./src/testHelpers" ) ,
93
93
theme : path . resolve ( __dirname , "./src/theme" ) ,
94
94
utils : path . resolve ( __dirname , "./src/utils" ) ,
95
- "@" : path . resolve ( __dirname , "./src" ) ,
96
95
} ,
97
96
} ,
98
97
} ) ;
You can’t perform that action at this time.
0 commit comments