Merge branch 'dev' into 'staging'

fix delete account amo

See merge request frontend/squiz!338
This commit is contained in:
Nastya 2024-06-04 08:15:03 +00:00
commit 3aa9856566

@ -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) {