about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2024-11-11 10:58:22 -0800
committerGitHub <noreply@github.com>2024-11-11 18:58:22 +0000
commit7008f61ea4cb356997f139bfe84fba98fcad805b (patch)
tree4025420c0806315774d0e3546ab6dbb406d14313 /src
parent9e1a16686a650d832998b5128c104ec1f635e6a8 (diff)
downloadvoidsky-7008f61ea4cb356997f139bfe84fba98fcad805b.tar.zst
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
Diffstat (limited to 'src')
-rw-r--r--src/view/com/util/List.web.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/List.web.tsx b/src/view/com/util/List.web.tsx
index 5ddc4ea8a..d9a2e351e 100644
--- a/src/view/com/util/List.web.tsx
+++ b/src/view/com/util/List.web.tsx
@@ -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
             }
           }