diff --git a/src/pages/digitalId/ProfileId.jsx b/src/pages/digitalId/ProfileId.jsx
index 8f669cc..5dbd2c2 100644
--- a/src/pages/digitalId/ProfileId.jsx
+++ b/src/pages/digitalId/ProfileId.jsx
@@ -165,6 +165,11 @@ const Profile = observer (() => {
store.pushAccountDataToBlockchain(updatedData.filter(elem=>elem.status!=='Stored'))
};
+ const sharedDataAccount = () => {
+ const sharedData = store.decryptedAccountData.filter(item => selectedItems.includes(item.key))
+ store.pushSharedData(sharedData)
+ }
+
const addDataParameters = () => {
const label = addedValues.label.toLowerCase().split(' ').join('');
if(labelMap[label])
@@ -517,7 +522,10 @@ const Profile = observer (() => {
Update
-