const folderPath = `test/${pdfFilename}`;
const { data, error } = await supabase.storage
.from("invoices")
.upload(folderPath, blob, {
contentType: "application/pdf",
upsert: true,
});
const folderPath = `test/${pdfFilename}`;
const { data, error } = await supabase.storage
.from("invoices")
.upload(folderPath, blob, {
contentType: "application/pdf",
upsert: true,
});