Skip to content

Commit 55757b6

Browse files
authored
style: remove useless param (#4650)
1 parent 4cf2840 commit 55757b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/persist/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function storageHas(key, storage) {
6565
}
6666

6767
function storageGet(key, storage) {
68-
let value = storage.getItem(key, storage)
68+
let value = storage.getItem(key)
6969

7070
if (value === undefined) return
7171

0 commit comments

Comments
 (0)