Skip to content

Commit

Permalink
fix(deps): fix breaking change in stormdb
Browse files Browse the repository at this point in the history
  • Loading branch information
jagregory committed Nov 29, 2021
1 parent 6d5d47f commit dbed898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/dataStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const createDataStore: CreateDataStore = async (
async delete(key: string | string[]) {
(key instanceof Array ? key : [key])
.reduce((acc, k) => acc.get(k), db)
.delete();
.delete(false);
await db.save();
},

Expand Down

0 comments on commit dbed898

Please sign in to comment.