Skip to content
This repository was archived by the owner on Oct 6, 2022. It is now read-only.

Commit 6fb7175

Browse files
committed
Fix formatting
1 parent 3b23593 commit 6fb7175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aqtToQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function queryTreeToGraphQLString(tree, parentIndex = 0) {
2121
});
2222
}
2323

24-
if (_.isArray(tree) ){
24+
if (_.isArray(tree)) {
2525
_.map(tree, (item, index) => {
2626
output += `${queryTreeToGraphQLString(item, parentIndex + index)} `;
2727
});

0 commit comments

Comments
 (0)