From 0580ce5cca5206dfeef5285ed4d7d5aa5145630f Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Wed, 1 Feb 2023 23:50:20 -0600 Subject: [PATCH] fix: test formatting --- src/OnspringClient.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OnspringClient.ts b/src/OnspringClient.ts index d290d7a..521868f 100644 --- a/src/OnspringClient.ts +++ b/src/OnspringClient.ts @@ -102,8 +102,8 @@ export class OnspringClient { endpoint: string, config: AxiosRequestConfig = {} ): Promise> { -const response = await this._client.get(endpoint, config); -const apiResponse = ApiResponseFactory.getApiResponse(response); + const response = await this._client.get(endpoint, config); + const apiResponse = ApiResponseFactory.getApiResponse(response); return apiResponse; } }