From 75d4e006ff870e1cd20b797e84c508f749c64db7 Mon Sep 17 00:00:00 2001 From: Damjan Savic Date: Sun, 25 Jan 2026 06:31:01 +0100 Subject: [PATCH] auto-claude: subtask-1-2 - Replace Math.random() with deterministic durations Co-Authored-By: Claude Sonnet 4.5 --- src/components-vite/FloatingPaths.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components-vite/FloatingPaths.tsx b/src/components-vite/FloatingPaths.tsx index e8279b9..acf6e01 100644 --- a/src/components-vite/FloatingPaths.tsx +++ b/src/components-vite/FloatingPaths.tsx @@ -32,7 +32,7 @@ export function FloatingPaths({ position }: { position: number }) { pathOffset: [0, 1, 0], }} transition={{ - duration: 20 + Math.random() * 10, + duration: 20 + (path.id % 3) * 5, repeat: Number.POSITIVE_INFINITY, ease: "linear", }}