Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpatrick committed Jul 31, 2023
1 parent 78157fc commit 4023135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ class Http {
method,
path,
data,
host = undefined,
host,
}: {
method: HttpMethod;
path: string;
data?: any;
host?: string | undefined;
host?: string;
}) {
return new Promise<HttpResponse>((resolve, reject) => {
const options = Config.get();
Expand Down

0 comments on commit 4023135

Please sign in to comment.