Fix notifications query - remove non-existent read column ordering

cgen-21e1d5d30cc54979bec709aec73f160f
This commit is contained in:
Builder.io 2025-11-10 03:32:44 +00:00
parent ada7c4024f
commit c85d75d09d

View file

@ -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);