fix build err
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 3m6s

Took 2 minutes
This commit is contained in:
Braydon 2024-10-06 21:38:15 -04:00
parent a548b41725
commit 8cb347b1dc

View File

@ -75,7 +75,7 @@ export function GridPattern({
// Resize observer to update container dimensions
useEffect(() => {
const resizeObserver = new ResizeObserver((entries) => {
for (let entry of entries) {
for (const entry of entries) {
setDimensions({
width: entry.contentRect.width,
height: entry.contentRect.height,