Anyone ever encountered and resolved this issue?
Web App 1 - works just fine.
<script>
localStorage.nextAppointment = "01/01/2025";
console.log(localStorage.getItem('nextAppointment') );
<script>
Web App 2 - which is execute only after Web App 1, returns null.
<script>
console.log(localStorage.getItem('nextAppointment') );
<script>
The result is same even after modifying the Storage object to:
window.localStorage.getItem('nextAppointment');
Note also, cookies have been cleared. Browser and PC restarted. Browser = Chrome.
Recommendations/ fixes would be greatly appreciated.