From 942840fb6283c2374e00881e7b70a2af65603d75 Mon Sep 17 00:00:00 2001 From: Steph <35910788+huynhicode@users.noreply.github.com> Date: Thu, 13 Feb 2025 15:41:19 -0800 Subject: [PATCH] update interval --- src/lib/util/promos/January2025.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/util/promos/January2025.svelte b/src/lib/util/promos/January2025.svelte index ec8a7cb0..f1f1a424 100644 --- a/src/lib/util/promos/January2025.svelte +++ b/src/lib/util/promos/January2025.svelte @@ -103,7 +103,7 @@ const interval = setInterval(() => { index = (index + 1) % taglines.length; currentTagline = taglines[index]; - }, 2000); + }, 5000); onDestroy(() => { clearInterval(interval);