You query a Supabase table from your Next.js app. The row is right there in the Table Editor. But your code gets back an empty array:

const { data, error } = await supabase.from('projects').select('*')

// error: null

// data: [] ← but the row exists!

Enter fullscreen mode