Browse Source

fixes

develop
dskvr 2 years ago
parent
commit
2d6761c5a8
  1. 2
      src/store/user.js

2
src/store/user.js

@ -79,7 +79,7 @@ export const useUserStore = defineStore('user', {
if(obj instanceof Object && Object.keys(obj).length)
this.kind3 = obj
else
this.kind3 = Object.assign(this.kind3, await this.retrieveKind3())
this.kind3 = Object.assign(await this.retrieveKind3(), this.kind3)
},
setPublicKey: function(pubKey){ this.pubKey = pubKey },
setProfile: function(stringifiedEvContent){

Loading…
Cancel
Save