Skip to content
This repository was archived by the owner on May 13, 2026. It is now read-only.

Commit a15e991

Browse files
committed
fix: default to not using intersection observer
1 parent d0f84be commit a15e991

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Chart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export function Chart<TDatum>({
162162
}
163163
}, [containerEl])
164164

165-
const [isIntersecting, setIsIntersecting] = React.useState(true)
165+
const [isIntersecting, setIsIntersecting] = React.useState(false)
166166

167167
React.useEffect(() => {
168168
if (!containerEl || !options.useIntersectionObserver) return

0 commit comments

Comments
 (0)