Skip to content

Commit

Permalink
fix: pull additional languages
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Nov 26, 2024
1 parent 0c2c499 commit 4999d7c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/engine/src/sync/words/GSheetsOp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ export abstract class GSheetsOp extends IdSyncOperation<number> {
}
}

protected async beginTransaction(): Promise<void> {
await this.words();
await this.wordsAdd();
}

protected async wordIds(): Promise<number[]> {
return this.words().then((r) => [...r.keys()]);
}
Expand Down

0 comments on commit 4999d7c

Please sign in to comment.