I’ve gone ahead and followed the plugin documentation to a T, but am unable to delete a file from the bucket. Everything uploads fine and is accessible, but the workflow, “Delete file…” does nothing for deleting a field. The debugger in Bubble shows a success and populates the URL in the key fine, and the browser console shows no associated errors. Is there anything I can provide to have this looked into? Thanks!
CORS policy is as follows…
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"DELETE",
"POST"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [
"ETag"
],
"MaxAgeSeconds": 30000
}
]