Hello, I have an app built with a Supabase backend and I am trying to use a loop action duplicate a list of 'tasks' in my database.
The action flow starts by making an API call to Supabase and fetches a list of tasks that I want to duplicate, I then update a page state called 'loopIteration' to the number of items returned from the API call.
I then have my loop, which should run when the page state 'loopIteration' is greater than 0, in my case, loopIteration = 2. The page state seems to update fine so the loop action condition should be satisfied, however, for some reason the loop is not firing.
I also have a navigate to action at the end of the action flow that is not firing