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 ?? [];