Add a type annotation

This commit is contained in:
Marshall Polaris 2022-10-04 23:55:56 -07:00
parent 13b50d9ff4
commit 5badefd759

View File

@ -45,7 +45,7 @@ export function ContractsGrid(props: {
cardUIOptions || {}
const { itemIds: contractIds, highlightClassName } = highlightOptions || {}
const onVisibilityUpdated = useCallback(
(visible) => {
(visible: boolean) => {
if (visible && loadMore) {
loadMore()
}