I am using Supabase and I have RLS enabled on my database table but I can still read data with the anonymous key. Why is this?
const { createClient } = require('@supabase/supabase-js')
const supabaseUrl = "https://jnalzpuoivntwiythznc.supabase.co";
const supabaseAnonKey = "MY_ANON_KEY";
const supabase = createClient(supabaseUrl, supabaseAnonKey);
(async function getData() {
const {data, error} = await supabase
.from("vaults")
.select("*");
console.log(data);
})();