fix: add report layout

This commit is contained in:
2025-11-04 17:00:56 +05:30
parent 3b8c64826a
commit 8801d56d3d
3 changed files with 80 additions and 15 deletions

View File

@@ -45,13 +45,8 @@ export default function Login() {
}
try {
<<<<<<< HEAD
// await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: mobile });
await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: "7890544527" });
=======
await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: mobile });
// await sendOtp({ type: 'LOGIN_OTP', username: CIF, mobileNumber: "6297421727" });
>>>>>>> 9850e742fc9e2db185e3a73807bc3c84570153e7
notifications.show({
color: 'orange',
title: 'OTP Required',
@@ -72,13 +67,8 @@ export default function Login() {
async function handleVerifyOtp(mobile?: string) {
try {
if (mobile) {
<<<<<<< HEAD
// await verifyLoginOtp(otp, mobile);
await verifyLoginOtp(otp, '7890544527');
=======
await verifyLoginOtp(otp, mobile);
// await verifyLoginOtp(otp, '6297421727');
>>>>>>> 9850e742fc9e2db185e3a73807bc3c84570153e7
return true;
}
}