From c85d75d09ddae3d1a665e8ec9a90ee581f5d0a40 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 03:32:44 +0000 Subject: [PATCH] Fix notifications query - remove non-existent read column ordering cgen-21e1d5d30cc54979bec709aec73f160f --- client/lib/aethex-database-adapter.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index 3799997d..300685b9 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -1023,7 +1023,6 @@ export const aethexNotificationService = { .from("notifications") .select("*") .eq("user_id", userId) - .order("read", { ascending: true }) .order("created_at", { ascending: false }) .limit(20);