From 46e749820e0eda54ef591293a4a9df515d0e19f6 Mon Sep 17 00:00:00 2001 From: Yrobot Date: Thu, 18 Dec 2025 11:38:06 +0800 Subject: [PATCH] fix: Pointer show up at init time --- apps/www/registry/magicui/pointer.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/www/registry/magicui/pointer.tsx b/apps/www/registry/magicui/pointer.tsx index f6da4c152..f82baaf61 100644 --- a/apps/www/registry/magicui/pointer.tsx +++ b/apps/www/registry/magicui/pointer.tsx @@ -42,6 +42,7 @@ export function Pointer({ const handleMouseMove = (e: MouseEvent) => { x.set(e.clientX) y.set(e.clientY) + setIsActive(true) } const handleMouseEnter = (e: MouseEvent) => {