From 4023135b5145f646dde30982e6630ff8e0fcfd50 Mon Sep 17 00:00:00 2001 From: Nick Patrick Date: Mon, 31 Jul 2023 12:52:19 -0400 Subject: [PATCH] address feedback --- src/http.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/http.ts b/src/http.ts index 0bb497f1..02fc17d5 100644 --- a/src/http.ts +++ b/src/http.ts @@ -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((resolve, reject) => { const options = Config.get();