Skip to content

Commit 7cd3d9f

Browse files
committed
types(FlickeringGrid): minor types error
1 parent c2dfb4e commit 7cd3d9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/frontend/app/lib/shadcn/components/ui/flickering-grid/FlickeringGrid.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ onMounted(() => {
161161
});
162162
intersectionObserver = new IntersectionObserver(
163163
([entry]) => {
164-
isInView.value = entry.isIntersecting;
164+
isInView.value = entry!.isIntersecting;
165165
animationFrameId = requestAnimationFrame(animate);
166166
},
167167
{ threshold: 0 },

0 commit comments

Comments
 (0)