diff --git a/packages/engine/src/sync/words/GSheetsOp.ts b/packages/engine/src/sync/words/GSheetsOp.ts index b17b0b4..78128e8 100644 --- a/packages/engine/src/sync/words/GSheetsOp.ts +++ b/packages/engine/src/sync/words/GSheetsOp.ts @@ -44,6 +44,11 @@ export abstract class GSheetsOp extends IdSyncOperation { } } + protected async beginTransaction(): Promise { + await this.words(); + await this.wordsAdd(); + } + protected async wordIds(): Promise { return this.words().then((r) => [...r.keys()]); }