Skip to content

Commit

Permalink
fix: filp 시간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jhj2713 committed Aug 14, 2024
1 parent 3eff6f8 commit 14e8134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/features/CasperCustom/CasperCustomFinishing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export function CasperCustomFinishing({ navigateNextStep }: CasperCustomFinishin

const flipTimer = setTimeout(() => {
setIsFlipped(true);
}, 3000);
}, 2000);

const navigateTimer = setTimeout(() => {
navigateNextStep();
}, 6000);
}, 4000);

return () => {
clearTimeout(flipTimer);
Expand Down

0 comments on commit 14e8134

Please sign in to comment.