We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b4ded3 commit aa16709Copy full SHA for aa16709
2 files changed
src/processors/gridset/saveMutations.ts
@@ -44,7 +44,7 @@ export class GridsetSaveHandler {
44
parser: any,
45
gridBuilder: any,
46
createBasicGridXml: (page: AACPage) => string
47
- ): Promise<void> {
+ ): void {
48
for (const page of Object.values(tree.pages)) {
49
// Skip pages with no mutations
50
if (page.pendingMutations.length === 0) {
src/processors/gridsetProcessor.ts
@@ -2547,7 +2547,7 @@ class GridsetProcessor extends BaseProcessor {
2547
suppressBooleanAttributes: false,
2548
});
2549
2550
- await GridsetSaveHandler.saveWithMutations(
+ GridsetSaveHandler.saveWithMutations(
2551
tree,
2552
originalZip,
2553
outputZip,
0 commit comments