From 2fdf0d2846125ce8843de0ef3ae50e3ce4740cf7 Mon Sep 17 00:00:00 2001 From: Richard Gill Date: Mon, 10 Jun 2024 09:56:12 +0300 Subject: [PATCH] Home page example loop delay 3s -> 5s (#273) --- apps/www/src/components/examples/Example.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/components/examples/Example.tsx b/apps/www/src/components/examples/Example.tsx index 393a4a81..96d9c013 100644 --- a/apps/www/src/components/examples/Example.tsx +++ b/apps/www/src/components/examples/Example.tsx @@ -31,7 +31,7 @@ import { defaultExampleProbs } from "./constants"; import { getThrottle, type ThrottleType } from "./throttle"; import type { Tab } from "./types"; -const LOOP_DELAY = 3000; +const LOOP_DELAY = 5000; const SideBySideContainer: React.FC<{ className?: string;