Skip to content

Commit

Permalink
fix: cheer 버튼 클릭 딜레이 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seongminn committed Nov 29, 2023
1 parent 233e5ab commit b382bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/match/CheerTeam/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function CheerTeam({
}: CheerTeamType) {
const [count, setCount] = useState(0);
const { mutate } = useCheerMutation({ matchId, gameTeamId });
const debouncedCount = useQueryDebounce<number>(count, 1000 * 5);
const debouncedCount = useQueryDebounce<number>(count, 1000);
const queryClient = useQueryClient();

useEffect(() => {
Expand Down

0 comments on commit b382bfa

Please sign in to comment.