diff --git a/frontend/src/pages/ApplicationFormPage/ApplicationFormPage.tsx b/frontend/src/pages/ApplicationFormPage/ApplicationFormPage.tsx index 9ff91ffc6..2a71a683d 100644 --- a/frontend/src/pages/ApplicationFormPage/ApplicationFormPage.tsx +++ b/frontend/src/pages/ApplicationFormPage/ApplicationFormPage.tsx @@ -90,9 +90,14 @@ const ApplicationFormPage = () => { try { await applyToClub(clubId, answers); localStorage.removeItem(STORAGE_KEY); - alert('답변이 성공적으로 제출되었습니다.'); + alert( + `"${clubDetail.name}" 동아리에 성공적으로 지원되었습니다.\n좋은 결과 있으시길 바랍니다🤗`, + ); + navigate(`/club/${clubId}`, { replace: true }); } catch { - alert('답변 제출에 실패했습니다. 잠시 후 다시 시도해 주세요.'); + alert( + '⚠️ 답변 제출에 실패했어요.\n네트워크 상태를 확인하거나 잠시 후 다시 시도해 주세요.', + ); } };