From e7a09457cae087b0a3f9524bdcd298e2b312f3f4 Mon Sep 17 00:00:00 2001 From: Nastya Date: Tue, 4 Jun 2024 11:14:23 +0300 Subject: [PATCH] fix delete account amo --- src/api/integration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/integration.ts b/src/api/integration.ts index 775e6979..aec11710 100644 --- a/src/api/integration.ts +++ b/src/api/integration.ts @@ -338,7 +338,7 @@ export const removeAmoAccount = async (): Promise<[void | null, string?]> => { try { await makeRequest({ method: "DELETE", - url: `${API_URL}/delete`, + url: `${API_URL}/account`, }); return [null, ""]; } catch (nativeError) {