diff --git a/mods/frontoffice/src/components/chat/customer/CustomerInfo.tsx b/mods/frontoffice/src/components/chat/customer/CustomerInfo.tsx index d57d054..245b217 100644 --- a/mods/frontoffice/src/components/chat/customer/CustomerInfo.tsx +++ b/mods/frontoffice/src/components/chat/customer/CustomerInfo.tsx @@ -76,20 +76,26 @@ export const CustomerInfo: React.FC = ({ {!showOrders ? ( <> - - Birthday {profile.birthday} - + {profile.birthday && ( + + Birthday {profile.birthday} + + )} {profile.name} {profile.email} -
- {profile.phone} + {profile.phone && ( + <> +
+ {profile.phone} + + )}
{profile.note}