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; }