From 32cf2f44132a6e116e555095d083afd807f837a7 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 00:30:29 +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 b3b194f..38eb69a 100644 --- a/src/routes/cases.index.tsx +++ b/src/routes/cases.index.tsx @@ -55,7 +55,7 @@ function CasesList() { const { data: caseRows } = await supabase .from("cases") .select("*, client:clients(name), assignee:profiles!cases_assigned_attorney_id_fkey(full_name, email)") - .order("updated_at", { ascending: false }); + .order("title", { ascending: true }); const baseRows = caseRows ?? [];