Skip to content

Commit 94d7853

Browse files
committed
fix: drop legacy signer edit fallback
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 58c83b9 commit 94d7853

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/Request/IdentifySigner.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ type SignerMethodValue = {
121121
122122
type SignerToEdit = {
123123
identify?: string
124-
signRequestId?: string
125124
displayName?: string
126125
description?: string
127126
identifyMethods?: SignerMethodValue[]
@@ -280,7 +279,7 @@ onBeforeMount(() => {
280279
displayName.value = props.signerToEdit.displayName ?? ''
281280
description.value = props.signerToEdit.description ?? ''
282281
enableCustomMessage.value = !!props.signerToEdit.description
283-
identify.value = props.signerToEdit.identify ?? props.signerToEdit.signRequestId ?? ''
282+
identify.value = props.signerToEdit.identify ?? ''
284283
if (Object.keys(props.signerToEdit).length > 0 && props.signerToEdit.identifyMethods?.length) {
285284
const method = props.signerToEdit.identifyMethods[0]
286285
identifyMethod.value = method.method as IdentifyAccountRecord['method']

0 commit comments

Comments
 (0)