diff --git a/src/components/List/DepartmentList/DepartmentItem.tsx b/src/components/List/DepartmentList/DepartmentItem.tsx index a2f77c72..b0d65bec 100644 --- a/src/components/List/DepartmentList/DepartmentItem.tsx +++ b/src/components/List/DepartmentList/DepartmentItem.tsx @@ -63,7 +63,9 @@ const DepartmentItem = ({ resource }: DepartmentItemProps) => { }; const handleMajorConfirmModal = () => { openModal(modals.confirm, { - message: MODAL_MESSAGE.CONFIRM.SET_MAJOR, + message: + selected.substring(selected.indexOf(' ') + 1) + + MODAL_MESSAGE.CONFIRM.SET_MAJOR, onConfirmButtonClick: () => handlerMajorSetModal(), onCancelButtonClick: () => closeModal(modals.confirm), }); diff --git a/src/constants/modal-messages.ts b/src/constants/modal-messages.ts index 56249c1c..a95ceb70 100644 --- a/src/constants/modal-messages.ts +++ b/src/constants/modal-messages.ts @@ -1,12 +1,12 @@ export const MODAL_MESSAGE = { SUGGESTION_TITLE: '건의사항', CONFIRM: { - SET_MAJOR: '이 전공으로 선택할까요?', + SET_MAJOR: '(으)로 선택할까요?', EDIT_MAJOR: '이 전공으로 수정할까요?', POST_SUGGESTION: '건의사항을 보내시겠어요?', STOP_ALARM: '알림을 그만 받을까요?', GET_ALARM: - '알림은 9시부터 18시 사이에 보내드려요!\n새로운 공지사항이 올라오면 푸시 알림을 받을까요?', + '알림은 9시부터 18시 사이에 보내드려요\n새로운 공지가 올라오면 푸시 알림을 받을까요?', }, ALERT: { OVER_MAP_BOUNDARY: '앗! 지도의 영역을 벗어났어요',