From e386e176fc73ad4ec91cfd42ecfcc08b3b5eb5a8 Mon Sep 17 00:00:00 2001 From: Nikolaj Frey Date: Tue, 27 Jun 2023 11:28:27 +1000 Subject: [PATCH] feat: main --- remix/app/components/textAnimation1.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix/app/components/textAnimation1.tsx b/remix/app/components/textAnimation1.tsx index 031400d..7f65594 100644 --- a/remix/app/components/textAnimation1.tsx +++ b/remix/app/components/textAnimation1.tsx @@ -28,7 +28,7 @@ export const TextAnimation1 = props => { const newTextIdx = texts?.indexOf(titleText) + 1 const newText = texts[newTextIdx] || texts[0] setTitleText(newText) - }, 5000) + }, 4000) return () => clearInterval(interval) }, [titleText, texts])