diff --git a/phronCare.UIBlazor/Pages/Sales/Customers.razor b/phronCare.UIBlazor/Pages/Sales/Customers.razor
index eedd099..b8393f5 100644
--- a/phronCare.UIBlazor/Pages/Sales/Customers.razor
+++ b/phronCare.UIBlazor/Pages/Sales/Customers.razor
@@ -8,7 +8,7 @@
@inject CustomerHttpService CustomerService
-
+
@@ -61,7 +61,7 @@
private List> TablaClientes = new();
private List TableColumns = new()
{
- "Id", "Nombre", "Razon Social", "Activo", "Crédito", "Límite",
+ "Id", "Nombre", "Activo", "Crédito", "Límite",
"Email", "Teléfono", "Dirección", "Documento"
};
@@ -84,7 +84,6 @@
{
{ "Id", c.Id },
{ "Nombre", c.Name ?? string.Empty },
- { "Razon Social", c.BusinessName ?? string.Empty },
{ "Activo", c.Active ? "Sí" : "No" },
{ "Crédito", c.HasCreditAccount ? "Sí" : "No" },
{ "Límite", c.CreditLimit },