Add FullName field to owner and customer signup request payloads
All checks were successful
Build frontend / build (push) Successful in 38s
All checks were successful
Build frontend / build (push) Successful in 38s
This commit is contained in:
@ -122,6 +122,7 @@ export default function OwnerRegisterPage() {
|
|||||||
console.log('[OwnerRegister] Submitting owner registration...');
|
console.log('[OwnerRegister] Submitting owner registration...');
|
||||||
|
|
||||||
const payload = {
|
const payload = {
|
||||||
|
FullName: formData.name,
|
||||||
name: formData.name,
|
name: formData.name,
|
||||||
email: formData.email,
|
email: formData.email,
|
||||||
phoneNumber: formData.phone || '',
|
phoneNumber: formData.phone || '',
|
||||||
|
|||||||
@ -119,6 +119,7 @@ export default function TenantRegisterPage() {
|
|||||||
console.log('[CustomerRegister] Submitting customer registration...');
|
console.log('[CustomerRegister] Submitting customer registration...');
|
||||||
|
|
||||||
const payload = {
|
const payload = {
|
||||||
|
FullName: formData.name,
|
||||||
name: formData.name,
|
name: formData.name,
|
||||||
email: formData.email,
|
email: formData.email,
|
||||||
phoneNumber: formData.phone,
|
phoneNumber: formData.phone,
|
||||||
|
|||||||
Reference in New Issue
Block a user