Skip to content

Commit

Permalink
Merge branch 'dev' into feat/#154-showcase-share
Browse files Browse the repository at this point in the history
  • Loading branch information
jhj2713 committed Aug 15, 2024
2 parents 26afa9b + ec4c890 commit 3eceff6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/src/constants/CasperCustom/casper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export const CASPER_MOUTH_SIZE = {
},
[MOUTH_OPTION.MOCKING]: {
WIDTH: 170,
TOP: 90,
TOP: 94,
},
[MOUTH_OPTION.SMILE]: {
WIDTH: 170,
Expand All @@ -360,7 +360,7 @@ export const CASPER_MOUTH_SIZE = {
},
[MOUTH_OPTION.MOCKING]: {
WIDTH: 126,
TOP: 59,
TOP: 60,
},
[MOUTH_OPTION.SMILE]: {
WIDTH: 128,
Expand Down
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 3eceff6

Please sign in to comment.