From d364c535631d4f488a761dbcb84848b4ef166685 Mon Sep 17 00:00:00 2001 From: Jeong Daseul <98886223+goodaseul@users.noreply.github.com> Date: Mon, 5 Jan 2026 10:16:45 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20Chore=20:=20=EB=AA=A9?= =?UTF-8?q?=ED=91=9C=EC=83=81=EC=84=B8=20=ED=8E=98=EC=9D=B4=EC=A7=80?= =?UTF-8?q?=EC=97=90=20=ED=98=B8=EC=B9=AD=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../(protected)/goals/[goalId]/_components/GoalContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(protected)/goals/[goalId]/_components/GoalContainer.tsx b/src/app/(protected)/goals/[goalId]/_components/GoalContainer.tsx index f4bb9b0..2ade049 100644 --- a/src/app/(protected)/goals/[goalId]/_components/GoalContainer.tsx +++ b/src/app/(protected)/goals/[goalId]/_components/GoalContainer.tsx @@ -16,7 +16,7 @@ export default function GoalContainer({ goalId }: Props) { return (
From 06bdba3a7573d6863cca5c8d28360335b2df1701 Mon Sep 17 00:00:00 2001 From: Jeong Daseul <98886223+goodaseul@users.noreply.github.com> Date: Mon, 5 Jan 2026 10:22:10 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=92=84=20Style=20:=20=EB=8C=80?= =?UTF-8?q?=EC=8B=9C=EB=B3=B4=EB=93=9C=20=EB=AC=B4=ED=95=9C=EC=8A=A4?= =?UTF-8?q?=ED=81=AC=EB=A1=A4=20=EC=95=88=EB=82=B4=20=EC=97=AC=EB=B0=B1?= =?UTF-8?q?=EC=A0=95=EB=A6=AC=20=EB=B0=8F=20=EC=98=A8=EC=A0=90=20=EC=A0=95?= =?UTF-8?q?=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(protected)/dashboard/_components/goal/GoalList.tsx | 6 +++--- .../(protected)/goals/[goalId]/_components/GoalHeader.tsx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/(protected)/dashboard/_components/goal/GoalList.tsx b/src/app/(protected)/dashboard/_components/goal/GoalList.tsx index a7a681b..c4a7eb1 100644 --- a/src/app/(protected)/dashboard/_components/goal/GoalList.tsx +++ b/src/app/(protected)/dashboard/_components/goal/GoalList.tsx @@ -75,11 +75,11 @@ export default function GoalList() { )} {isFetchingNextPage && ( -

불러오는 중…

+

불러오는 중…

)} {!hasNextPage && ( -

- 모든 목표를 불러왔습니다 +

+ 모든 목표를 불러왔습니다.

)} diff --git a/src/app/(protected)/goals/[goalId]/_components/GoalHeader.tsx b/src/app/(protected)/goals/[goalId]/_components/GoalHeader.tsx index e16976b..f0e02a6 100644 --- a/src/app/(protected)/goals/[goalId]/_components/GoalHeader.tsx +++ b/src/app/(protected)/goals/[goalId]/_components/GoalHeader.tsx @@ -67,7 +67,7 @@ export default function GoalHeader({ goalId }: GoalHeaderProps) { { onSuccess: () => { setIsEditing(false); - toast.success("수정되었습니다"); + toast.success("목표가 수정되었습니다."); }, }, ); @@ -82,7 +82,7 @@ export default function GoalHeader({ goalId }: GoalHeaderProps) { deleteGoal(numericGoalId, { onSuccess: () => { setConfirmOpen(false); - toast.success("삭제되었습니다"); + toast.success("목표가 삭제되었습니다."); router.replace("/dashboard"); }, });