Skip to content

Commit

Permalink
fix: KVStore.list takes args (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleyjones authored Jun 8, 2023
1 parent 9a4ea65 commit f94825d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/network/modules/kvStore/kvStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const KvStore: KVStoreModule = {
},

async list(): Promise<KVStoreList> {
const res = await this.call("kvstore.list")
const res = await this.call("kvstore.list", {})
return getKVStoreList(res)
},

Expand Down

0 comments on commit f94825d

Please sign in to comment.