Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaMachina committed Dec 2, 2022
1 parent cd4a5a8 commit 425181e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/graphiql-toolkit/src/graphql-helpers/merge-ast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function inlineRelevantFragmentSpreads(
? getNamedType(selectionSetType).name
: null;
const outputSelections = [];
const seenSpreads = [];
const seenSpreads: string[] = [];
for (let selection of selections) {
if (selection.kind === 'FragmentSpread') {
const fragmentName = selection.name.value;
Expand Down

0 comments on commit 425181e

Please sign in to comment.