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"));