hide the button shadow
This commit is contained in:
@@ -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"));
|
||||
|
||||
Reference in New Issue
Block a user