Skip to content

Commit 21e7c29

Browse files
committed
ESLint errors in utils.ts
1 parent 7bfc737 commit 21e7c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function formatDate(date: string): string {
2222
/**
2323
* Debounce function for search/filter inputs
2424
*/
25-
export function debounce<T extends (...args: any[]) => any>(
25+
export function debounce<T extends (...args: unknown[]) => unknown>(
2626
func: T,
2727
wait: number
2828
): (...args: Parameters<T>) => void {

0 commit comments

Comments
 (0)