Skip to content

Commit

Permalink
remove: 만족도 조사 재제출 타이머 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Aug 23, 2024
1 parent 725b5a8 commit 23b3b0c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions src/views/CompletePage/components/Survey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ const Survey = () => {
setTimeout(() => {
setPoint('CHANGED');
}, 200);
setTimeout(() => {
setPoint(-1);
}, 2200);
};

const { mutate } = useMutateSatisfaction({ onSuccess: handleSatisfaction });
Expand Down
4 changes: 1 addition & 3 deletions src/views/SignedInPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ const SignedInPage = () => {

return (
<>
{isComplete && <CompletePage />}
{!isComplete && submit && <MyPage part={part} applicationPass={applicationPass} />}
{!isComplete && !submit && <ApplyPage onSetComplete={handleSetComplete} />}
<CompletePage />
</>
);
};
Expand Down

0 comments on commit 23b3b0c

Please sign in to comment.