From b382bface067715ab6edd0cbd1458ef83c32730b Mon Sep 17 00:00:00 2001 From: seongminn Date: Wed, 29 Nov 2023 18:10:04 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20cheer=20=EB=B2=84=ED=8A=BC=20=ED=81=B4?= =?UTF-8?q?=EB=A6=AD=20=EB=94=9C=EB=A0=88=EC=9D=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/match/CheerTeam/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/match/CheerTeam/index.tsx b/src/components/match/CheerTeam/index.tsx index 510a10b..f861079 100644 --- a/src/components/match/CheerTeam/index.tsx +++ b/src/components/match/CheerTeam/index.tsx @@ -23,7 +23,7 @@ export default function CheerTeam({ }: CheerTeamType) { const [count, setCount] = useState(0); const { mutate } = useCheerMutation({ matchId, gameTeamId }); - const debouncedCount = useQueryDebounce(count, 1000 * 5); + const debouncedCount = useQueryDebounce(count, 1000); const queryClient = useQueryClient(); useEffect(() => {