This commit is contained in:
lingdocs 2021-08-22 13:28:07 +04:00
parent 989ffe5a80
commit fbcdc7576a
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export async function publishDictionary(): Promise<FT.PublishDictionaryResponse>
}
export async function upgradeAccount(password: string): Promise<AT.UpgradeUserResponse> {
const response = await accountApiFetch(accountBaseUrl + "user/upgrade", "PUT", { password });
const response = await accountApiFetch("user/upgrade", "PUT", { password });
return response as AT.UpgradeUserResponse;
}