Skip to content

Commit

Permalink
fix log message in setItem helper
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-atr committed Nov 9, 2022
1 parent 190bc2c commit 1094308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/local-storage-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ export const setItem = (key, value) => {
try {
localStorage.setItem(key, value);
} catch (e) {
log(`Was unable to set localStorage item due to: ${e.message}`);
log(`Unable to set localStorage item due to: ${e.message}`);
}
};

0 comments on commit 1094308

Please sign in to comment.