From b52bab194f096f7ee1d26df3894314aa3053a19b Mon Sep 17 00:00:00 2001 From: TQCasey <494294315@qq.com> Date: Mon, 2 Feb 2026 23:38:27 +0800 Subject: [PATCH] fix bugs --- App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);