diff --git a/App.tsx b/App.tsx index ea79e4f..bdcc482 100644 --- a/App.tsx +++ b/App.tsx @@ -181,7 +181,7 @@ class Api { const res = await fetch(`${Api.BASE_URL}/verify-otp`, { method: 'POST', headers: this.headers(), - body: JSON.stringify({ walletType, mobile, otp, ...params }), + body: JSON.stringify({ walletType, mobile, otp, params }), }); const data = await res.json(); if (!data.success) throw new Error(data.message);