Skip to content

Commit a15e991

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)