How are you accessing the form? Is it in an overlay/slide-in? You may need to first use a “close overlay” action, or possibly a “go back” action ahead of your “go to tab”.
You may also want to try the wait action to give the app a couple seconds to submit the form’s data before moving to a new tab.
Is the new tab’s visibility dependent on the form’s submission? That may also have something to do with it.
What is the data source that is storing your form submissions? If it’s writing to an external data source (Airtable, Sheets, etc.), then the app may need an extra couple seconds to process before it navigates away from the form.
You can create a custom action for the “after submit action” and add as many actions as you like!
Interesting. I know AirTable sync is a bit “less great” than other data sources, but that wait condition should have helped. What if you try to navigate to a tab that has basic, existing data on it (nothing reliant on AirTable or the values of the form’s submission)?
I’m guessing the data that your tab contains relies on the AirTable sync and since it’s not immediately available, the action is failing.
You may want to change the flow a bit and try to add another step between the form submission and the navigation to the tab. You could also try the “wait for condition” action to check for a the new value in your data before navigating to the tab. I’m not sure if that would give any better results though.
I was able to figure this out, it seems there was a visibility condition set to user email in the page option. by removing it it now navigate to the tab correctly!