From b794daf0636f2bae91af87c071778040c3dd24ac Mon Sep 17 00:00:00 2001 From: Mohammed Al-yaseen Date: Sun, 12 Oct 2025 21:54:43 +0300 Subject: [PATCH] hide the button shadow --- src/pages/otp/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/otp/page.tsx b/src/pages/otp/page.tsx index 568dc71..9f999a3 100644 --- a/src/pages/otp/page.tsx +++ b/src/pages/otp/page.tsx @@ -72,6 +72,7 @@ export default function OtpPage() { marginBottom: 16, color: "white", border: "none", + boxShadow: "none", }} disabled={!otp || otp.length < 5 || isConfirmLoading} onClick={() => { @@ -80,7 +81,7 @@ export default function OtpPage() { .then((response) => { localStorage.setItem( "customer", - JSON.stringify(response.result.customer) + JSON.stringify(response.result.customer), ); localStorage.setItem("token", response.result.access_token); message.info(t("otp.confirmOTPSuccess"));