فهرست منبع

Fix visitor article display

Corrected the query in `useRealArticles.tsx` to display articles for visitors, ensuring the correct filtering and data transformation.
gpt-engineer-app[bot] 5 ماه پیش
والد
کامیت
1e9cbd3b98
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      src/hooks/useRealArticles.tsx

+ 1 - 2
src/hooks/useRealArticles.tsx

@@ -121,9 +121,8 @@ export function useRealArticles() {
           .from('articles')
           .select(`
             *,
-            feeds(name, category)
+            feeds!inner(name, category)
           `)
-          .not('feeds', 'is', null)
           .order('published_at', { ascending: false })
           .limit(20);