Browser GOTO stopping two App Flows running on signup page

Hey all,

On my sign up page, I have two App Flows that trigger (to send data into Segment.com) on success of form submission (successful sign up). This works fine. But, when I put a redirect with the Browser element after both app flows running in the Success action - the App Flows don’t run. I assume due to a timing issue.

Wondering if anyone could point me in the right direction to handle this? I’ve tried a heap this morning with no luck.

The redirection step should be on the on-success event of the api which sends data to segment.com.

Hi Sid,

I’m not sending data to segment via API, but JS call using the flow and a JS event on the page.

I’ve tried to add the redirect step on ‘done’ of the flow event, but this still didn’t solve it unfortunately

The done event also does not wait for JS function to complete.
If you are calling a JS function, then you will have to identify the success event there in JS, and use dmx.parse to then redirect.

1 Like

Ok, got it - thank you sid for the guidance here. I’ll scour the forum / look online to see how this is done.