hide the button shadow

This commit is contained in:
2025-10-12 21:54:43 +03:00
parent 74c15aff03
commit b794daf063

View File

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