Sorted cases alphabetically

X-Lovable-Edit-ID: edt-5c10c677-b81b-42cc-88e6-b4f39ddb2c49
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-20 00:30:38 +00:00
co-authored by renee-png
+1 -1
View File
@@ -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 ?? [];