Skip to content

Commit b26c89a

Browse files
committed
MAGETWO-63635: [GitHub] Checkout does not load in Safari (private mode) #7942
1 parent 4fef428 commit b26c89a

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Ui/view/base/web/js/lib/core/storage

1 file changed

+1
-1
lines changed

app/code/Magento/Ui/view/base/web/js/lib/core/storage/local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ define([
8787
var data = localStorage.getItem(root),
8888
result = {};
8989

90-
if (!_.isNull(data) && typeof(data) != 'undefined') {
90+
if (!_.isNull(data) && typeof data != 'undefined') {
9191
result = JSON.parse(data);
9292
}
9393

0 commit comments

Comments
 (0)