Skip to content

Commit 352cc87

Browse files
committed
style: 💄 run formatter
1 parent e1097cf commit 352cc87

File tree

1 file changed

+1
-1
lines changed
  • src/__demos__/json-crdt-server/services/blocks/store/level

1 file changed

+1
-1
lines changed

src/__demos__/json-crdt-server/services/blocks/store/level/LevelStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export class LevelStore implements types.Store {
187187
const {encoder, decoder} = codec;
188188
const key = this.startKey(id);
189189
await this.mutex.acquire(id + '.trunc', async () => {
190-
const start = decoder.decode(await kv.get(key) as any) as types.StoreSnapshot;
190+
const start = decoder.decode((await kv.get(key)) as any) as types.StoreSnapshot;
191191
if (start.seq >= to) return;
192192
const gt = this.batchKey(id, start.seq);
193193
const lte = this.batchKey(id, to);

0 commit comments

Comments
 (0)