Skip to content

Commit 2eafeb8

Browse files
authored
Merge pull request #50 from o5faruk/fix/whiteScreen
Fix blank screen
2 parents e309d28 + 4d34d4b commit 2eafeb8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

widget/app.services.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@
4040

4141
return {
4242
get: function () {
43-
var data= JSON.parse(localStorage.getItem(buildfire.context.instanceId));
44-
return data;
43+
// var data= JSON.parse(localStorage.getItem(buildfire.context.instanceId));
44+
// return data;
45+
return null;
4546
},
4647
set: function (data) {
47-
localStorage.setItem(buildfire.context.instanceId, JSON.stringify(data));
48+
// localStorage.setItem(buildfire.context.instanceId, JSON.stringify(data));
4849
}
4950
};
5051
}])

0 commit comments

Comments
 (0)