We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 413cb1a commit fd4f9a6Copy full SHA for fd4f9a6
lib/storage/providers/IDBKeyValProvider/index.ts
@@ -62,9 +62,9 @@ const provider: StorageProvider = {
62
63
return promisifyRequest(store.put(newValue, key));
64
});
65
- return Promise.all(upsertMany).then(() => undefined);
+ return Promise.all(upsertMany);
66
67
- }),
+ }).then(() => undefined),
68
mergeItem(key, change) {
69
// Since Onyx already merged the existing value with the changes, we can just set the value directly.
70
return provider.multiMerge([[key, change]]);
0 commit comments