fix delete account amo

This commit is contained in:
Nastya 2024-06-04 11:14:23 +03:00
parent 7d435281ee
commit e7a09457ca

@ -338,7 +338,7 @@ export const removeAmoAccount = async (): Promise<[void | null, string?]> => {
try {
await makeRequest<void>({
method: "DELETE",
url: `${API_URL}/delete`,
url: `${API_URL}/account`,
});
return [null, ""];
} catch (nativeError) {