Skip to content

Commit f14a492

Browse files
committed
[fix]: ManagaTask.jsx save_btn 핸들링 처리 추가
1 parent 580a01d commit f14a492

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/components/TaskModal.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ const TaskModal = ({ weekInfo, onClose }) => {
4242
});
4343

4444
try {
45-
await Promise.all(requests);
45+
const response = await Promise.all(requests);
46+
console.log("응답들: ", response);
4647
alert("과제가 저장되었습니다.");
4748
onClose();
4849
} catch (error) {

0 commit comments

Comments
 (0)