I’m building a trade journal where the user can study their trades and make refinements where necessary. There’s a page (accounts.html) where the user can visualize their connected accounts in a table with all being links that load another page (dashboard.html) which is one of many pages that are dependent on the account id that is sent to the url as a query parameter for Dashboard. However what if the user wants to access the analysis page right from the Dashboard. They can’t because the link isn’t there to be pressed again. How would I combat this. How could I store this account id
I tried query parameters but couldn’t get it to work. Tried storing to a global structure but couldn’t work