Failing to fetch data from tables in expo

I am creating a react native app with expo. I am using supabase for the first time and I wanted to fetch data from one of my tables, this is the function I am using to try it out:

const getTestChat = async () => {
    const { data } = await supabase.from("test").select("*");

    console.log(data);
  };


and then I called it with onPress in a TouchableOpacity and it returns this:

 LOG  []


What am I doing wrong?

P.S. The table in the table editor is in the attached image.
supabase.png
Was this page helpful?