Internal Server Error while uploading images to supabase

What are you trying to do? (please be as specific as possible and include relevant screenshots, code snippets)
I am trying to upload an image to supabase storage
What are the reproduction steps?
I added the upload element
I added the supabase storage
I run an interaction on file upload

Even though files are getting uploaded but i get an internal server errror as shown below

Relevant links:

I am having the same issue. It successfully uploads the images to Supabase but it shows an error each time? @quicksaas were you able to solve this problem?

Hi, could you include your project id and steps on how to reproduce the error that you are facing? If possible please attach a video.

project id = du5JYchpc6sq2W36uKJdgt

Here is a link to a video displaying my steps: Screen Recording 2024-12-26 192123.mp4 - Google Drive

Steps to reproduce: 1. Create Supabase Storage integration 2. Add button for upload
3. Configure operation to upload to Supabase (see below) 4. Allow multiple files to be uploaded 5. upload multiple files

Hi, this should be a harmless error, we will be investigating it further. But for now you can avoid the error by adding the following condition in your action:

files?.[files.length - 1].status === "done"

1 Like

Thank you! This works.