fix: Admin

Deskripsi:
- Penambahan field nama rekening di db bank
- Optimalisasi event
## No Issue
This commit is contained in:
2024-09-03 10:10:31 +08:00
parent 8a018462c7
commit 74108c3096
117 changed files with 2976 additions and 1144 deletions

View File

@@ -39,7 +39,7 @@ export default function CreateProfile({ userId }: { userId: any }) {
const [imgBG, setImgBG] = useState<any | null>();
const [value, setValue] = useState({
name: "",
namaBank: "",
email: "",
alamat: "",
jenisKelamin: "",
@@ -189,7 +189,7 @@ export default function CreateProfile({ userId }: { userId: any }) {
onChange={(val) => {
setValue({
...value,
name: val.target.value,
namaBank: val.target.value,
});
}}
/>