From 7a4a946aeace159f80072e0bbf3249f7c28513bd Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 12 Mar 2025 16:05:41 +0100 Subject: [PATCH] Update particles.tsx --- frontend/src/components/ui/particles.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ui/particles.tsx b/frontend/src/components/ui/particles.tsx index 245b7ed8..1b514d5b 100644 --- a/frontend/src/components/ui/particles.tsx +++ b/frontend/src/components/ui/particles.tsx @@ -127,7 +127,7 @@ const Particles: React.FC = ({ const connectParticles = () => { if (!context.current) return; - const maxDistance = 180; + const maxDistance = 120; circles.current.forEach((p1, i) => { for (let j = i + 1; j < circles.current.length; j++) { const p2 = circles.current[j];