hide the button shadow
This commit is contained in:
@@ -72,6 +72,7 @@ export default function OtpPage() {
|
|||||||
marginBottom: 16,
|
marginBottom: 16,
|
||||||
color: "white",
|
color: "white",
|
||||||
border: "none",
|
border: "none",
|
||||||
|
boxShadow: "none",
|
||||||
}}
|
}}
|
||||||
disabled={!otp || otp.length < 5 || isConfirmLoading}
|
disabled={!otp || otp.length < 5 || isConfirmLoading}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@@ -80,7 +81,7 @@ export default function OtpPage() {
|
|||||||
.then((response) => {
|
.then((response) => {
|
||||||
localStorage.setItem(
|
localStorage.setItem(
|
||||||
"customer",
|
"customer",
|
||||||
JSON.stringify(response.result.customer)
|
JSON.stringify(response.result.customer),
|
||||||
);
|
);
|
||||||
localStorage.setItem("token", response.result.access_token);
|
localStorage.setItem("token", response.result.access_token);
|
||||||
message.info(t("otp.confirmOTPSuccess"));
|
message.info(t("otp.confirmOTPSuccess"));
|
||||||
|
|||||||
Reference in New Issue
Block a user