Hallo,
i am facing an issue trying to navigate user to the edit screen of a form and to a certain tab based on the department.
User is notified by email and there is a link in the body.
Edit screen is a screen with Tabs and on select of each tab i set a varTab.
on App start i use:
Set(InternalReviewID, Param("InternalReviewID"));
Set(varTab, Param("varTab"));
If(!IsBlank(InternalReviewID), Navigate(EditScreen),Navigate(WelcomeScreen));
the flow is triggered when an item is created in a list that has all fields of the form.
in the emails link i use the parameter

i have a text label in the app set to InternalReviewID and although it shows the correct ID it navigates me to a wrong record.
Any ideas why this is happening?