Update Node.js to 20.x in Dockerfile (#6099)

* Update Node.js to 20.x in Dockerfile

* Update Node.js types and engines entry to 20.x

* Update Node.js version in .nvmrc

* Use node version from .nvmrc in linting job

* Use Type Assertion for clearTimeout
This commit is contained in:
Trivikram Kamat
2024-11-11 10:58:22 -08:00
committed by GitHub
parent 9e1a16686a
commit 7008f61ea4
6 changed files with 23 additions and 37 deletions
+1 -1
View File
@@ -468,7 +468,7 @@ let Row = function RowImpl<ItemT>({
}
} else {
if (intersectionTimeout.current) {
clearTimeout(intersectionTimeout.current)
clearTimeout(intersectionTimeout.current as NodeJS.Timeout)
intersectionTimeout.current = undefined
}
}