feat : merge for production movement

This commit is contained in:
2025-10-17 13:05:47 +05:30
parent 6acb7ade49
commit b93e6db650
8 changed files with 427 additions and 473 deletions

View File

@@ -5,7 +5,7 @@ import {TextInput,Button,Select,Title,Paper,Grid,Group,Radio,Text,PasswordInput}
import { useRouter } from "next/navigation";
import { notifications } from '@mantine/notifications';
import AddBeneficiaryOthers from './addBeneficiaryOthers';
import { generateOTP } from '@/app/OTPGenerator';
const bankOptions = [
{ value: 'KCCB', label: 'KCCB - The Kangra Central Co-Operative Bank' },
@@ -30,7 +30,6 @@ const AddBeneficiary: React.FC = () => {
const getFullMaskedAccount = (acc: string) => { return "X".repeat(acc.length); };
const handleGenerateOtp = async () => {
// const value = await generateOTP(6);
const value = "123456"; // Or generate a random OTP
setGeneratedOtp(value);
return value;