Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Dec 12, 2024
1 parent 359d059 commit e87cc8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/executors/http/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export function buildHTTPExecutor(
? request.operationName
: undefined,
extensions:
(request.extensions && Object.keys(request.extensions).length > 0)
request.extensions && Object.keys(request.extensions).length > 0
? request.extensions
: undefined,
};
Expand Down
2 changes: 1 addition & 1 deletion packages/executors/http/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ export function jsonStringifyBody(body: SerializedRequest) {
}
str += '}';
return str;
}
}

0 comments on commit e87cc8c

Please sign in to comment.