浏览代码

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