Skip to content

Commit cc43257

Browse files
committed
style: 💄 fix linter warning
1 parent be63cd3 commit cc43257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/json-crdt-repo/session/EditSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class EditSession<N extends JsonNode = JsonNode<any>> {
8787
const length = patches.length;
8888
// TODO: After async call check that sync state is still valid. New patches, might have been added.
8989
if (length || this.cursor === undefined) {
90-
let time = this.start.clock.time - 1;
90+
const time = this.start.clock.time - 1;
9191
const res = await this.repo.sync({
9292
id: this.id,
9393
patches,

0 commit comments

Comments
 (0)