From e8c9d26b401ca6971d828f7ccc217f6c0c946f7d Mon Sep 17 00:00:00 2001 From: picizo Date: Wed, 10 Apr 2024 10:40:50 +0800 Subject: [PATCH] fix --- components/Home/ABanner.tsx | 3 ++- components/Home/Agg.tsx | 13 +------------ package.json | 1 + pnpm-lock.yaml | 9 +++++++++ 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/components/Home/ABanner.tsx b/components/Home/ABanner.tsx index eb5e8e1..93998e9 100644 --- a/components/Home/ABanner.tsx +++ b/components/Home/ABanner.tsx @@ -3,7 +3,7 @@ import { Header } from '../Header' const ABanner = () => { const phrases = ['Aggregated Blockchains', 'Agg.Staking', 'Agg.Data', 'Agg.Growth'] - const Typewriter = ({ phrases }) => { + const Typewriter = ({ phrases }: any) => { const [currentPhraseIndex, setCurrentPhraseIndex] = useState(0) const [currentCharIndex, setCurrentCharIndex] = useState(0) const [isDeleting, setIsDeleting] = useState(false) @@ -67,6 +67,7 @@ const ABanner = () => {