Corrected the query in `useRealArticles.tsx` to display articles for visitors, ensuring the correct filtering and data transformation.
@@ -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);