I am trying to have multiple image upload buttons in one form, but submit those images to Supabase using a submit button at the end of the form. The problem is that the form submit seems to submit only the very first image even if the first image upload button has multiple images. Also, if I add the code from this Issue it doesn’t upload any images. Am I running into a limitation here? Is there a better way to do this?
Hi, yes, this is a current limitation, it’s not possible to use the supabase storage integration to upload multiple files. In this case, the solution for non fixed number of files is adding your own code to handle this scenario, this can be achieved with any of the following:
Thank you for the response. Could you clarify something for me though? You say that Supabase storage integration does not allow for the upload of multiple files. But I am able to upload multiple files with one upload button. My issue is when i have more than one upload button. How can i upload multiple files to Supabase if that is truly the limitation?