diff --git a/phronCare.UIBlazor/Pages/Sales/Customers.razor b/phronCare.UIBlazor/Pages/Sales/Customers.razor
index e5a1887..fb5cfb3 100644
--- a/phronCare.UIBlazor/Pages/Sales/Customers.razor
+++ b/phronCare.UIBlazor/Pages/Sales/Customers.razor
@@ -19,8 +19,8 @@
{
@@ -63,8 +63,8 @@ else
return new Dictionary
{
{ "Id", c.Id },
- { "Nombre", c.Name },
- { "Razon Social", c.BusinessName },
+ { "Nombre", c.Name ?? string.Empty },
+ { "Razon Social", c.BusinessName ?? string.Empty },
{ "Activo", c.Active ? "Sí" : "No" },
{ "Código Externo", c.ExternalCode },
{ "Crédito", c.HasCreditAccount ? "Sí" : "No" },