Remove uneeded initialized value

This commit is contained in:
Eric Bailey
2025-06-09 18:16:09 -05:00
parent 97d35eedc5
commit e00ab1f89b
+1 -1
View File
@@ -121,7 +121,7 @@ export function Inner({uri}: {uri: string | undefined}) {
* this is always true. And when a user changes thread parameters, we also
* manually set this to true.
*/
const shouldHandleScroll = useRef(!isRoot)
const shouldHandleScroll = useRef(true)
/**
* Called any time the content size of the list changes, _just_ before paint.
*