Skip to content

Commit f801089

Browse files
authored
semi
1 parent 36ea2ba commit f801089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities/separateOperations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function separateOperations(
6262
// to retain the same order as the original document.
6363
const definitions = [ operation ];
6464
Object.keys(dependencies).forEach(name => {
65-
definitions.push(fragments[name])
65+
definitions.push(fragments[name]);
6666
});
6767
definitions.sort(
6868
(n1, n2) => (positions.get(n1) || 0) - (positions.get(n2) || 0)

0 commit comments

Comments
 (0)