From 8b7ca71f2c3fb9a875a94290609a9e013d8691b8 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 1 Oct 2025 11:16:12 -0300 Subject: [PATCH] removed ! character from copy --- frontend/src/contexts/task-context.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/contexts/task-context.tsx b/frontend/src/contexts/task-context.tsx index 4b6c18c2..5eb10ea9 100644 --- a/frontend/src/contexts/task-context.tsx +++ b/frontend/src/contexts/task-context.tsx @@ -197,7 +197,7 @@ export function TaskProvider({ children }: { children: React.ReactNode }) { newTask.status === "completed" ) { // Task just completed - show success toast - toast.success("Task completed successfully!", { + toast.success("Task completed successfully", { description: `Task ${newTask.task_id} has finished processing.`, action: { label: "View",