Skip to content

Commit

Permalink
Fix async
Browse files Browse the repository at this point in the history
  • Loading branch information
arontsang committed Aug 31, 2024
1 parent b6776fb commit afff59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export abstract class QueryBuilder implements IQueryBuilder {
const [result, count, pivotResultFields] = await Promise.all([
this.datasource.doQueryAsync(query),
this.datasource.doQueryAsync(countQuery),
await this.getPivotResultsFieldAsync(params)
this.getPivotResultsFieldAsync(params)
]);

const rowData = result.toArray();
Expand Down

0 comments on commit afff59d

Please sign in to comment.