everyone.
I'm new to Supabase and I'm exploring all the features available in this amazing platform. Unfortunately I'm having some troubles with bucket creation. I tried also create manually the bucket and then upload some file and I got the same error.
The error is: "new row violates row-level security policy for table "objects""
I would be really thankful if someone could help me.
Here is my code:
const { data, error } = await supabase
.storage
.createBucket(`bucket-${user.id}`, { public: false })
console.log(data, error);