From b0c3bd1b2d59a6cc58f80435c748e0943336c26c Mon Sep 17 00:00:00 2001 From: Harshith Mullapudi Date: Wed, 3 Sep 2025 12:25:08 +0530 Subject: [PATCH] fix: give more time for larger graphs to settle on --- apps/webapp/app/components/graph/graph-clustering.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webapp/app/components/graph/graph-clustering.tsx b/apps/webapp/app/components/graph/graph-clustering.tsx index 418742c..cb9dafb 100644 --- a/apps/webapp/app/components/graph/graph-clustering.tsx +++ b/apps/webapp/app/components/graph/graph-clustering.tsx @@ -513,7 +513,7 @@ export const GraphClustering = forwardRef< } else if (complexity < 500) { durationSeconds = 4.0; } else { - durationSeconds = Math.min(8, 5 + (complexity - 500) * 0.006); + durationSeconds = Math.min(20, 5 + (complexity - 500) * 0.006); } return {