I have a web page (displays in two languages, English and Spanish) which is designed as part of text message with the URL (http://localhost:3000/##/email/noalinkverify/I8j442KUdEq66lQik82kUw?lng=en) for this web page in it.
string url = _requestInformation.WebURL + "#/email/noalinkverify/" + noaLinkDetail.Token + "?lng=" + languageCode;
This page is in React which takes user information as input and fetches their documents as out put, which is called as an API through .Net code. For some reason both English and Spanish version URL are directing me to English version of the page only. How can I debug this issue? I tried using postman but its not hitting the debug point I placed in VS Code.
What do you think the issue is for showing only English version? How can I fix it?