We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b8f4de4 + e791a0d commit 403f74eCopy full SHA for 403f74e
1 file changed
src/frontend/wwwroot/utils.js
@@ -74,7 +74,7 @@ window.getStoredData = (key)=> {
74
75
// If not found in localStorage, check sessionStorage
76
if (!data) {
77
- data = getStoredData(key);
+ data = sessionStorage.getItem(key);
78
if (data) {
79
// Move data from sessionStorage to localStorage
80
setStoredData(key, data);
0 commit comments