Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
fix(runtime): ewoijgw
Browse files Browse the repository at this point in the history
  • Loading branch information
kisenka committed Nov 22, 2017
1 parent a45c44f commit 9228b20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/closed-banners-storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ export default class ClosedBannersStorage {
* @return {Array<string>|null}
*/
getAll() {
const rawValue = null;
let rawValue = null;

try {
window.localStorage.getItem(this.storageKey);
rawValue = window.localStorage.getItem(this.storageKey);
} catch (e) {
// nothing here
}
Expand Down

0 comments on commit 9228b20

Please sign in to comment.