201 Returning No Data, Response
I do not have RLS enabled on the table I'm inserting into; moreover, when posting I receive a 201, but I'm not getting any response data returned from Supabase.
Additionally, in my Network tab, in Response for the successfully posted request, it reads, "This request has no response data available."
Snippet below:
const { data, error } = await supabase
.from("listings")
.insert(
{
seller: wallet,
image: values.file.name,
title: values.title,
price: values.price,
status: 1,
featured: 0
})
Moreover, when testing "data" I also tried to use:

Additionally, in my Network tab, in Response for the successfully posted request, it reads, "This request has no response data available."
Snippet below:
const { data, error } = await supabase
.from("listings")
.insert(
{
seller: wallet,
image: values.file.name,
title: values.title,
price: values.price,
status: 1,
featured: 0
})
Moreover, when testing "data" I also tried to use:
- console.log(data)
- setState(data)
- both return "null"
- I am also using Formik and posting the updated form values.
- Supabase returns 201
- The row is successfully created in Supabase
- No RLS is enabled