Skip to content

Commit aa16709

Browse files
committed
type fix
1 parent 0b4ded3 commit aa16709

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/processors/gridset/saveMutations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class GridsetSaveHandler {
4444
parser: any,
4545
gridBuilder: any,
4646
createBasicGridXml: (page: AACPage) => string
47-
): Promise<void> {
47+
): void {
4848
for (const page of Object.values(tree.pages)) {
4949
// Skip pages with no mutations
5050
if (page.pendingMutations.length === 0) {

src/processors/gridsetProcessor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2547,7 +2547,7 @@ class GridsetProcessor extends BaseProcessor {
25472547
suppressBooleanAttributes: false,
25482548
});
25492549

2550-
await GridsetSaveHandler.saveWithMutations(
2550+
GridsetSaveHandler.saveWithMutations(
25512551
tree,
25522552
originalZip,
25532553
outputZip,

0 commit comments

Comments
 (0)