diff --git a/components/dashboard/Globe.tsx b/components/dashboard/Globe.tsx index fdeeb9f..173fe2a 100644 --- a/components/dashboard/Globe.tsx +++ b/components/dashboard/Globe.tsx @@ -91,14 +91,14 @@ export default function Globe({ data, className }: GlobeProps) { onMouseMove={(e) => { if (pointerRef.current !== null) { const delta = e.clientX - pointerRef.current - dragRef.current += delta / 3000 + dragRef.current += delta / 800 pointerRef.current = e.clientX } }} onTouchMove={(e) => { if (pointerRef.current !== null && e.touches[0]) { const delta = e.touches[0].clientX - pointerRef.current - dragRef.current += delta / 3000 + dragRef.current += delta / 800 pointerRef.current = e.touches[0].clientX } }}