Skip to content

Commit 0f44393

Browse files
committed
chore: fix lint errors
1 parent ee7e92f commit 0f44393

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apps/frontend/src/modules/shared/components/ui/multipleSelectorProps.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ const CommandEmpty = forwardRef<
166166
<div
167167
ref={forwardedRef}
168168
className={cn('py-6 text-center text-sm', className)}
169+
// eslint-disable-next-line react/no-unknown-property
169170
cmdk-empty=''
170171
role='presentation'
171172
{...props}
@@ -327,7 +328,7 @@ const MultipleSelector = React.forwardRef<
327328
};
328329

329330
void exec();
330-
// eslint-disable-next-line react-hooks/exhaustive-deps
331+
// TODO: eslint-disable-next-line react-hooks/exhaustive-deps -> definition for rule not found
331332
}, [debouncedSearchTerm, groupBy, open, triggerSearchOnFocus]);
332333

333334
useEffect(() => {
@@ -353,7 +354,7 @@ const MultipleSelector = React.forwardRef<
353354
};
354355

355356
void exec();
356-
// eslint-disable-next-line react-hooks/exhaustive-deps
357+
// TODO: eslint-disable-next-line react-hooks/exhaustive-deps -> definition for rule not found
357358
}, [debouncedSearchTerm, groupBy, open, triggerSearchOnFocus]);
358359

359360
const CreatableItem = () => {

0 commit comments

Comments
 (0)