Skip to content

Commit 4b233d4

Browse files
Merge pull request microsoft#90 from microsoft/PSL-BUG-14977-hotfix
fix: Maximum call stack size exceeded
2 parents 6ced00c + 53b41e7 commit 4b233d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frontend/wwwroot/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ window.getStoredData = (key)=> {
7474

7575
// If not found in localStorage, check sessionStorage
7676
if (!data) {
77-
data = getStoredData(key);
77+
data = sessionStorage.getItem(key);
7878
if (data) {
7979
// Move data from sessionStorage to localStorage
8080
setStoredData(key, data);

0 commit comments

Comments
 (0)