function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Umesh RathiUmesh Rathi 

Open External URL from Salesforce Mobile App does not come back if back button is clicked


I am facing issue while coming back from external URL within Salesforce Mobile app built using LWC
I am using and navigating to an external URl from salesforce mobile app. However, if we click mobile back button it doesnt get me back. Every time i have to close the app and start over again. Also, if i navigate to menu -> my app it still lands me on the external url.
<form name="frm" action={meta.ActionURL} method="post" target="_self"> <input type="hidden" name="msg" value={meta.ActionCode}> <input type="submit" value={meta.ButtonName} class="buttonClass" onclick={onClose}> </form>

Any help is appreciated.
Thanks