I have an onboarding flow where I have local JSON variables for 2 different things. Lets say one is for people, one is for places.
My app has an image uploader for a person, where I upload a file to my weweb cdn, upload to my people folder in supabase, and then update my local variable value. This works seamlessly.
Later in my app I have the next image uploader, where I upload a file to my weweb cdn, upload to place folder in supabase, and then update my local variable value. Every time I do this, it overrides my person file. If I upload a second file, that overrides the person file, then the previous file shows up in on the place variable.
I haven’t found any way to fix this, and have rebuilt both the file uploaders, workflows, and variables with no success.