fix eslint errors

This commit is contained in:
xCyanGrizzly
2026-02-18 15:27:23 +01:00
parent 3a5726e82b
commit 564f81585b
8 changed files with 14 additions and 9 deletions

View File

@@ -44,7 +44,7 @@ export function VendorTable({ data, pageCount, totalCount }: VendorTableProps) {
const [deleteId, setDeleteId] = useState<string | null>(null);
const [searchValue, setSearchValue] = useState(searchParams.get("search") ?? "");
const debouncedSearch = useDebounce(searchValue, 300);
const _debouncedSearch = useDebounce(searchValue, 300);
// Update URL when search changes
const updateSearch = (value: string) => {