feat: small fix for getTickers method

This commit is contained in:
Mikhail Gladchenko
2024-03-29 13:19:16 +00:00
parent ba4d7d1137
commit 8bd62243dc
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ export class Frontage {
].filter(Boolean).join('&');
return fetchWithValidation(
`/api/v1/tickers/get?${queryParams}`,
`${this.apiUrl}/api/v1/tickers/get?${queryParams}`,
tickersSchema
);
};