feat(checkout): enhance checkout form with user data pre-filling and disable fields

This commit is contained in:
2026-07-06 14:37:20 -03:00
parent 09fa876da3
commit a642ae84d5
3 changed files with 20 additions and 0 deletions

View File

@@ -2,6 +2,8 @@ export interface AuthUser {
id: number;
nombre_apellido: string;
email: string;
dni?: string;
telefono?: string;
}
export interface LoginPayload {