Skip to content

Commit 969da38

Browse files
committed
fix: any -> unknown
1 parent d32e8a5 commit 969da38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/TableWithControlsLayout/useTableScroll.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react';
33
interface UseTableScrollProps {
44
tableContainerRef?: React.RefObject<HTMLDivElement>;
55
scrollContainerRef?: React.RefObject<HTMLElement>;
6-
dependencies?: any[]; // Optional additional dependencies for the effect
6+
dependencies?: unknown[]; // Optional additional dependencies for the effect
77
}
88

99
export const useTableScroll = ({

0 commit comments

Comments
 (0)