From f5b721c2ab939ee2d3e03fec35371ff532bba8bf Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sun, 19 Apr 2026 18:17:47 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/cases.index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/cases.index.tsx b/src/routes/cases.index.tsx index 69aefe8..0d7d752 100644 --- a/src/routes/cases.index.tsx +++ b/src/routes/cases.index.tsx @@ -255,7 +255,7 @@ function CasesList() { const { data, error } = await supabase .from("cases") .update({ - status: assignStatus, + status: assignStatus as "active" | "closed" | "closed_lost" | "closed_won" | "intake" | "on_hold", closed_at: isClosed ? new Date().toISOString().slice(0, 10) : null, }) .in("id", ids)