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:29 +00:00
co-authored by renee-png
parent 6be42f9dab
commit 32cf2f4413
+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 ?? [];