From 90f18fcb6435dd5defbbbacdc8da1d90615edafe Mon Sep 17 00:00:00 2001 From: Varderes Barsegyan Date: Fri, 13 Dec 2024 15:26:47 -0600 Subject: [PATCH] feat: new handlers --- src/api/assets/helpers.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/api/assets/helpers.ts b/src/api/assets/helpers.ts index 4bdc21b..210d8f2 100644 --- a/src/api/assets/helpers.ts +++ b/src/api/assets/helpers.ts @@ -446,10 +446,7 @@ export const AssetsApiAxiosParamCreator = (configuration: Configuration) => ({ ): RequestArgs => { // verify required parameter 'policy' is not null or undefined assertParamExists('policyUtxos', 'policy', policy); - const localVarPath = `/policy/{policy}/utxos`.replace( - `{${'policy'}}`, - encodeURIComponent(String(policy)), - ); + const localVarPath = `/policy/{policy}/utxos`.replace(`{${'policy'}}`, encodeURIComponent(String(policy))); // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); const { baseOptions } = configuration;