Gnee
06/01/2022, 9:55 PM// capturedPhoto.uri is file URI
const reponse = await fetch(capturedPhoto.uri);
const blob = await reponse.blob();
const { error: uploadError } = await supabase.storage
.from("fr8s")
.upload(`/content_uploads/${fileName}`, blob);
This doesn't work. I've also tried array buffer, also doesn't work.Needle
06/01/2022, 9:55 PMgaryaustin
06/01/2022, 10:16 PMNeedle
06/01/2022, 10:16 PM