Skip to content

Commit 1f851b3

Browse files
committed
fix prettier
1 parent 01c64ac commit 1f851b3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/execution/execute.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,17 @@ function executeImpl(
264264
return data.then(
265265
(resolved) => {
266266
exeContext.executionController.abort();
267-
return incrementalPublisher.buildDataResponse(initialResultRecord, resolved)
267+
return incrementalPublisher.buildDataResponse(
268+
initialResultRecord,
269+
resolved,
270+
);
268271
},
269272
(error) => {
270273
exeContext.executionController.abort();
271-
return incrementalPublisher.buildErrorResponse(initialResultRecord, error)
274+
return incrementalPublisher.buildErrorResponse(
275+
initialResultRecord,
276+
error,
277+
);
272278
},
273279
);
274280
}

0 commit comments

Comments
 (0)