supabase-js query does not return anything locally

Running this locally ...
console.log(
  await supabase
    .from('projects')
    .select('*')
);

just prints ...
{ error: null, data: [], count: null, status: 200, statusText: 'OK' }


Am I missing something when setting up supabase locally? Database does exists, table with a single row too.
Was this page helpful?