We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 881ffc6 + 3617e7c commit e4c86c7Copy full SHA for e4c86c7
1 file changed
src/Components/Request/IdentifySigner.vue
@@ -113,7 +113,7 @@ export default {
113
this.displayName = signer?.displayName ?? ''
114
this.identify = signer?.id ?? ''
115
},
116
- saveSigner() {
+ async saveSigner() {
117
if (!this.signer?.method || !this.signer?.id) {
118
return
119
}
@@ -127,6 +127,13 @@ export default {
127
128
],
129
})
130
+
131
+ try {
132
+ await this.filesStore.saveWithVisibleElements({ visibleElements: [] })
133
+ } catch (error) {
134
+ console.error('Error saving signer:', error)
135
+ }
136
137
this.displayName = ''
138
this.identify = ''
139
this.signer = {}
0 commit comments