diff --git a/www/plugins/es/js/services/wallet-services.js b/www/plugins/es/js/services/wallet-services.js
index f9a201d52a90ac2e81883a956cd1c2faa7bfd35b..c881c8360b151e02332bcf9779cba6171935da8b 100644
--- a/www/plugins/es/js/services/wallet-services.js
+++ b/www/plugins/es/js/services/wallet-services.js
@@ -85,6 +85,7 @@ angular.module('cesium.es.wallet.services', ['ngResource', 'cesium.platform', 'c
             data.name = profile.name;
             data.avatar = profile.avatar;
             data.profile = profile.source;
+            data.profile.description = profile.description;
             console.debug('[ES] [wallet] Loaded full user profile in '+ (new Date().getTime()-now) +'ms');
           }
           deferred.resolve();
diff --git a/www/plugins/es/templates/user/items_profile.html b/www/plugins/es/templates/user/items_profile.html
index e2d92ac32bea9c1e97e32716701f8b28f6fde5fd..7ed0ae5d777fd2360ecc93faada9f731c1aff8ef 100644
--- a/www/plugins/es/templates/user/items_profile.html
+++ b/www/plugins/es/templates/user/items_profile.html
@@ -10,7 +10,7 @@
 <!-- About me -->
 <div class="item" ng-if="formData.profile.description">
   <span class="gray" translate>PROFILE.DESCRIPTION</span>
-  <h3 class=" text-keep-lines" ng-bind-html="formData.description||formData.profile.description"></h3>
+  <h3 class=" text-keep-lines" ng-bind-html="formData.profile.description"></h3>
 </div>
 
 <!-- Localisation -->