diff --git a/src/widjets-display-user-tzcld.js b/src/widjets-display-user-tzcld.js
index 36bd49187aad08bfd7c332ac465357887db1893e..f0218318a46d36f17b582a4a838532c0ffcbc874 100644
--- a/src/widjets-display-user-tzcld.js
+++ b/src/widjets-display-user-tzcld.js
@@ -61,7 +61,13 @@ import("./utils.js").then((utils) => {
               }
               let render = ``;
               for(let phone of tzcldprofile.phones) {
-                render +=  `<div class="phone margin-bottom-xxsmall">${await phone.phone} ${await phone.phone_type}</div>`;
+                let phoneType = '' ;
+                if (await phone.phone_type != null) {
+                  phoneType = await phone.phone_type;
+                }
+                if (await phone.phone != null) {
+                  render +=  `<div class="phone margin-bottom-xxsmall">${await phone.phone} ${await phoneType}</div>`;
+                }
               }
              
               this.element.innerHTML = render;
@@ -94,7 +100,14 @@ import("./utils.js").then((utils) => {
               }
               let render = ``;
               for(let email of tzcldprofile.emails) {
-                render +=  `<div class="email margin-bottom-xxsmall"><a class="link" href="mailto:${await email.email}">${await email.email}</a> ${await email.email_type}</div>`;
+                let emailType = '' ;
+                if (await email.email_type != null) {
+                  emailType = await email.email_type;
+                }
+                if (await email.email != null) {
+                  render +=  `<div class="email margin-bottom-xxsmall"><a class="link" href="mailto:${await email.email}">${await email.email}</a> ${emailType}</div>`;
+                }
+                
               }
              
               this.element.innerHTML = render;