From b4bd721aad79d425c2c011893cb526e9f59a7ccb Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Wed, 1 Feb 2023 23:35:06 -0600 Subject: [PATCH] fix: test formatting --- src/OnspringClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OnspringClient.ts b/src/OnspringClient.ts index 3aa925d..210bf9d 100644 --- a/src/OnspringClient.ts +++ b/src/OnspringClient.ts @@ -96,7 +96,7 @@ export class OnspringClient { * @returns {Promise>} - A promise that resolves to an ApiResponse of type T. */ private async get(endpoint: string, config: AxiosRequestConfig = {}): Promise> { - const response = await this._client.get(endpoint, config); +const response = await this._client.get(endpoint, config); const apiResponse = ApiResponseFactory.getApiResponse(response); return apiResponse; }