Skip to content

Commit

Permalink
temp: 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
abcxj123 committed Jun 10, 2024
1 parent 905776e commit 89accda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/moneyBox/MoneyBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@ export const MoneyBox = () => {
return res;
},
onSuccess: (_, variables) => {
checkMission();
setShowAlarm(true);
alarmMsgRef.current = `하나머니 ${variables}원 적립!`;
alarmMsgRef.current = variables;
},
});

useEffect(() => {
if (!isSuccess0 && userInfo?.step === 2 && userInfo.stepStatus === 2) {
checkMission();
setShowStepModal(true);
setCheckExpense(true);
}
Expand Down Expand Up @@ -169,7 +169,7 @@ export const MoneyBox = () => {
};

return (
<div className='relative w-full h-screen'>
<div className='w-full min-h-real-screen3'>
{showAlarm && (
<AlarmAnimation
message={alarmMsgRef.current}
Expand Down

0 comments on commit 89accda

Please sign in to comment.